3378f68a8c
- nuovi obj roles e person - dataseed preliminare
30 lines
684 B
C#
30 lines
684 B
C#
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
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
|
|
[Table("RegRole")]
|
|
public class RoleModel
|
|
{
|
|
/// <summary>
|
|
/// ID del record
|
|
/// </summary>
|
|
[Key]
|
|
public int RoleID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Descrizione del ruolo
|
|
/// </summary>
|
|
public string Description { get; set; } = "";
|
|
}
|
|
}
|