ApiVirtualTask/ApiPolo/Models/Progressivo_out.cs
2025-05-08 17:41:48 +02:00

27 lines
749 B
C#

using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
public class Progressivo_out
{
/// <summary>Azienda</summary>
public string? azienda { get; set; }
/// <summary>stringa definisce il tipo di progressivo da gestire</summary>
public string? tipo_prog { get; set; }
/// <summary>valore progressivo</summary>
public int? val_prog { get; set; }
/// <summary> errore titolo</summary>
public string? err_title { get; set; }
/// <summary>errore dettaglio</summary>
public string? err_detail { get; set; }
/// <summary>errore status code (200, 500)</summary>
public string? err_status_code { get; set; }
}
}