Files
gpw_next/GPW.CORE.Data/DbModels/CalFesteFerieModel.cs
T
2023-01-02 19:15:51 +01:00

20 lines
550 B
C#

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