using System; using System.ComponentModel.DataAnnotations; namespace ACLib.P2.AppContext.Models { public partial class AC_UserRole { [Key] public int ID { get; set; } public int UserID { get; set; } public int RoleID { get; set; } public DateTime CreatedDate { get; set; } public DateTime? UpdatedDate { get; set; } } }