Files
2023-01-23 19:30:31 +01:00

28 lines
783 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("Contributi")]
public partial class ContributiModel
{
public ContributiModel()
{
FatturaNav = new HashSet<AccoDocModel>();
}
public int Id { get; set; }
public string? Descrizione { get; set; }
public double? Percentuale { get; set; }
public bool Imponibile { get; set; }
public bool Ritenuta { get; set; }
public byte[]? UpsizeTs { get; set; }
public virtual ICollection<AccoDocModel> FatturaNav { get; set; }
}
}