using System; using System.ComponentModel.DataAnnotations; namespace ACLib.P2.AppContext.Models { public partial class AC_Role { [Key] public int ID { get; set; } public string Name { get; set; } public int Status { get; set; } public DateTime CreatedDate { get; set; } public DateTime? UpdatedDate { get; set; } } }