Files
hcs/Hcs.WebApp/Data/Hcs/Registry.cs
2025-10-23 18:33:56 +09:00

18 lines
370 B
C#

namespace Hcs.WebApp.Data.Hcs
{
public class Registry
{
public Guid Id { get; set; }
public int Number { get; set; }
public string Name { get; set; }
public bool IsCommon { get; set; }
public DateTime UpdatedAt { get; set; }
public virtual ICollection<RegistryElement> Elements { get; set; } = [];
}
}