25 lines
575 B
C#
25 lines
575 B
C#
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; }
|
|
}
|
|
}
|