using Microsoft.EntityFrameworkCore; namespace ApiSoftway.Models { [Keyless] public class GiriConsegna_out { 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; } /// errore titolo public string? err_title { get; set; } /// errore dettaglio public string? err_detail { get; set; } /// errore status code (200, 500) public string? err_status_code { get; set; } public string? Pimezzo { get; set; } public string? Pinote { get; set; } } }