using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace GPW.CORE.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("CalendFesteFerie")] public partial class CalFesteFerieModel { [Key] public DateTime data { get; set; } public string codGiust { get; set; } = ""; public string descrizione { get; set; } = ""; } }