Files
SHERPA/SHERPA.Data/DbModels/CIvaModel.cs
T

28 lines
766 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 CIvaModel
{
public CIvaModel()
{
RigheFattNav = new HashSet<RigheFattModel>();
}
public int CIva1 { get; set; }
public double? Iva { get; set; }
public string? Descrizione { get; set; }
public byte[]? UpsizeTs { get; set; }
public bool? Enabled { get; set; }
public bool SplitPay { get; set; }
public virtual ICollection<RigheFattModel> RigheFattNav { get; set; }
}
}