[CHANGE] Preparing database
This commit is contained in:
12
Manager.Data/Models/ApplicationContext/SettingsModel.cs
Normal file
12
Manager.Data/Models/ApplicationContext/SettingsModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Manager.Data.Models.ApplicationContext;
|
||||
|
||||
public class SettingsModel
|
||||
{
|
||||
public required string Key { get; set; }
|
||||
public required string Name { get; set; }
|
||||
public required string Description { get; set; }
|
||||
public Guid? GroupId { get; set; }
|
||||
public string ValueType { get; set; } = nameof(String);
|
||||
public object? Value { get; set; }
|
||||
public object? DefaultValue { get; set; }
|
||||
}
|
Reference in New Issue
Block a user