using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace StockMan.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("Permessi")] public partial class PermessiModel { [Key] public string COD_PERMESSO { get; set; } = null!; public string URL { get; set; } = null!; public int GRUPPO { get; set; } = 0; public int NUMERO { get; set; } = 0; public string NOME { get; set; } = null!; public string DESCRIZIONE { get; set; } = null!; } }