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