Add initial hcs database schema creation
This commit is contained in:
11
Hcs.WebApp/Data/Hcs/Registry.cs
Normal file
11
Hcs.WebApp/Data/Hcs/Registry.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace Hcs.WebApp.Data.Hcs
|
||||
{
|
||||
public class Registry
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
public int Number { get; set; }
|
||||
|
||||
public virtual ICollection<RegistryElement> Elements { get; set; } = [];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user