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

34 lines
872 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("AuthRoles")]
public partial class AuthRoleModel
{
#region Public Properties
public AuthRoleModel()
{
Claims = new HashSet<AuthClaimModel>();
}
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int RoleID { get; set; }
public string Ruolo { get; set; }
public string Descrizione { get; set; }
public virtual ICollection<AuthClaimModel> Claims { get; set; }
#endregion Public Properties
}
}