14 lines
289 B
C#
14 lines
289 B
C#
namespace Backend.Data;
|
|
|
|
public sealed class PersistenceOptions
|
|
{
|
|
public const string SectionName = "Persistence";
|
|
|
|
public string Provider { get; set; } = PersistenceProviders.InMemory;
|
|
}
|
|
|
|
public static class PersistenceProviders
|
|
{
|
|
public const string InMemory = "InMemory";
|
|
}
|