31 lines
1018 B
C#
31 lines
1018 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("RigheFatt")]
|
|
public partial class RigheFattModel
|
|
{
|
|
public int Id { get; set; }
|
|
public int? IdxDoc { get; set; }
|
|
public string? Descrizione { get; set; }
|
|
public string? Um { get; set; }
|
|
public decimal? PrezzoUm { get; set; }
|
|
public float Qta { get; set; }
|
|
public float Sconto { get; set; }
|
|
public int? CIva { get; set; }
|
|
public bool NoRitenuta { get; set; }
|
|
public string Valuta { get; set; } = null!;
|
|
public int? IdFatt { get; set; }
|
|
public string CodExt { get; set; } = null!;
|
|
public double QuotaProj { get; set; }
|
|
|
|
public virtual CIvaModel? CIvaNav { get; set; }
|
|
public virtual AccoDocModel? FattureNav { get; set; }
|
|
}
|
|
}
|