5b357e2cea
- gestione dati x fattura not mapped
28 lines
787 B
C#
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; }
|
|
}
|
|
}
|