blob: 61cc48557e0f20f41b23597c8a6c274353a86371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace StardewModdingAPI.Web.Framework.ConfigModels
{
/// <summary>The config settings for cache storage.</summary>
internal class StorageConfig
{
/*********
** Accessors
*********/
/// <summary>The storage mechanism to use.</summary>
public StorageMode Mode { get; set; }
/// <summary>The connection string for the storage mechanism, if applicable.</summary>
public string ConnectionString { get; set; }
/// <summary>The database name for the storage mechanism, if applicable.</summary>
public string Database { get; set; }
}
}
|