using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Lux.Data.DbModel
{
//
// This is here so CodeMaid doesn't reorganize this document
//
[Table("RegRole")]
public class RoleModel
{
///
/// ID del record
///
[Key]
public int RoleID { get; set; }
///
/// Descrizione del ruolo
///
public string Description { get; set; } = "";
}
}