27 lines
628 B
C#
27 lines
628 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 GWMS.Data.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella Roles
|
|
/// </summary>
|
|
[Table("Auths")]
|
|
public class Auth
|
|
{
|
|
#region Public Properties
|
|
|
|
[Column("Description", Order = 1)]
|
|
public string Description { get; set; } = "";
|
|
|
|
[Key, Column("Role", Order = 0)]
|
|
public string Role { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |