fleshout backend
This commit is contained in:
13
backend/Data/PersistenceOptions.cs
Normal file
13
backend/Data/PersistenceOptions.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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";
|
||||
}
|
||||
Reference in New Issue
Block a user