22 lines
715 B
C#
22 lines
715 B
C#
namespace SoftwayWeb.Models
|
|
{
|
|
public class Pigircon
|
|
{
|
|
public string? Pisergir { get; set; }
|
|
public DateTime? Pidata { get; set; }
|
|
public string? Piautist { get; set; }
|
|
public int? Pitbancar { get; set; }
|
|
public int? Pitbanrec { get; set; }
|
|
|
|
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
|
|
public decimal? Pidarecu { get; set; }
|
|
|
|
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
|
|
public decimal? Pirecupe { get; set; }
|
|
|
|
public DateTime? Pidatchi { get; set; }
|
|
public string? Pinote { get; set; }
|
|
public string? Pimezzo { get; set; }
|
|
}
|
|
}
|