Files
Samuele Locatelli 5b357e2cea SherpaFatt:
- gestione dati x fattura not mapped
2023-01-28 10:11:14 +01:00

28 lines
787 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace SHERPA.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("CIva")]
public partial class VatModel
{
public VatModel()
{
RigheFattNav = new HashSet<RigheFattModel>();
}
public int IdxVat { get; set; }
public double Iva { get; set; } = 0;
public string Descrizione { get; set; } = "";
public bool Enabled { get; set; } =true;
public bool SplitPay { get; set; } =false;
public int id_ext { get; set; } = 0;
public virtual ICollection<RigheFattModel> RigheFattNav { get; set; }
}
}