fix: remove required from entities' id
also adds "Global" entity for storing global configuration
This commit is contained in:
7
Entities/Global.cs
Normal file
7
Entities/Global.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Shadow.Entities;
|
||||
public class Global
|
||||
{
|
||||
public int Id { get; set; }
|
||||
required public string Key { get; set; }
|
||||
public string? Value { get; set; } = null;
|
||||
}
|
||||
Reference in New Issue
Block a user