using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Data; namespace GPW.CORE.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Keyless] public partial class ExpCommessaModel { public string RagSociale { get; set; } = ""; public string NomeProj { get; set; } = ""; public string NomeFase { get; set; } = ""; public string CognomeNome { get; set; } = ""; public DateTime Inizio { get; set; } public DateTime Fine { get; set; } public string Descrizione { get; set; } = ""; public decimal OreTot { get; set; } = 0; public decimal Importo { get; set; } = 0; } }