Files
2024-07-13 15:27:53 +02:00

36 lines
996 B
C#

using Core;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using static Core.Enum;
#nullable disable
namespace LiMan.DB.DBModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("AuthClaims")]
public partial class AuthClaimModel
{
#region Public Properties
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int ClaimID { get; set; }
public int RoleID { get; set; }
public int UserID { get; set; }
public DateTime DtIns { get; set; } = DateTime.MinValue;
public DateTime DtMod { get; set; } = DateTime.Now;
[ForeignKey("RoleID")]
public virtual AuthRoleModel RoleNav { get; set; }
[ForeignKey("UserID")]
public virtual AuthUserModel UserNav { get; set; }
#endregion Public Properties
}
}