using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace SHERPA.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("CIva")] public partial class VatModel { public VatModel() { RigheFattNav = new HashSet(); } 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 RigheFattNav { get; set; } } }