[CHANGE] Preparing database

This commit is contained in:
max
2025-08-11 00:44:52 +02:00
parent 9edd0690cf
commit 3c3f2db4e7
6 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace Manager.Data.Models.ApplicationContext;
public record SettingsGroupModel
{
public required Guid Id { get; set; }
public required string Name { get; set; }
}

View 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; }
}