CarTrackingRuleEngine/RuleEngine/Models/Unit.cs

25 lines
575 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
using System;
using System.Collections.Generic;
#nullable disable
namespace RuleEngine.Models
{
public partial class Unit
{
public Unit()
{
UserUnits = new HashSet<UserUnit>();
}
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<UserUnit> UserUnits { get; set; }
}
}