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 { /// /// Tabella Roles /// [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 } }