namespace StardewModdingAPI.Web.Framework.ConfigModels
{
/// The config settings for cache storage.
internal class StorageConfig
{
/*********
** Accessors
*********/
/// The storage mechanism to use.
public StorageMode Mode { get; set; }
/// The connection string for the storage mechanism, if applicable.
public string ConnectionString { get; set; }
/// The database name for the storage mechanism, if applicable.
public string Database { get; set; }
}
}