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 AuthModel { #region Public Properties [Key, Column("AuthRole", Order = 0)] public string AuthRole { get; set; } = ""; [Column("Description", Order = 1)] public string Description { get; set; } = ""; #endregion Public Properties } }