using Microsoft.EntityFrameworkCore;
namespace ApiSoftway.Models
{
[Keyless]
public class GiriConsegnaDaCreare_out
{
public string? CodAutomezzo { get; set; }
public string? CodAutista { get; set; }
public string? Autista { get; set; }
public string? Automezzo { get; set; }
public DateTime? DataGiro { 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; }
}
}