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; // // This is here so CodeMaid doesn't reorganize this document // namespace GWMS.Data.DatabaseModels { /// /// Tabella Roles /// [Table("Auths")] public class AuthModel { #region Public Properties [Key, Column("AuthRole", Order = 0), MaxLength(50)] public string AuthRole { get; set; } = ""; [Column("Description", Order = 1), MaxLength(250)] public string Description { get; set; } = ""; #endregion Public Properties } }