26 lines
829 B
C#
26 lines
829 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data;
|
|
|
|
namespace GPW.CORE.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[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;
|
|
}
|
|
}
|