using System; using System.Collections.Generic; #nullable disable namespace RuleEngine.Models { public partial class Unit { public Unit() { UserUnits = new HashSet(); } public int Id { get; set; } public string Name { get; set; } public string Province { get; set; } public string Description { get; set; } public DateTime? CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public virtual ICollection UserUnits { get; set; } } }