14 lines
281 B
C#
14 lines
281 B
C#
namespace Hcs.WebApp.Data.Hcs
|
|
{
|
|
public class Registry
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public int Number { get; set; }
|
|
|
|
public bool IsCommon { get; set; }
|
|
|
|
public virtual ICollection<RegistryElement> Elements { get; set; } = [];
|
|
}
|
|
}
|