Files
limanapp/EgwControlCenter.Core/DTO/VersStatusDTO.cs
T
Samuele Locatelli ff865edaf7 ACC:
- update gestione reset key e cod impiego
- test registrazione in debug
- ok generazione nuove KEY
2024-09-25 19:41:52 +02:00

48 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace EgwControlCenter.Core.DTO
{
public class VersStatusDTO
{
#region Public Properties
/// <summary>
/// Nome applicazione
/// </summary>
public string CodApp { get; set; } = "";
/// <summary>
/// Versione applicativo corrente
/// </summary>
public string VersNumCurr { get; set; } = "0.0.0.0";
/// <summary>
/// Versione applicativo LAST disponibile
/// </summary>
public string VersNumLast { get; set; } = "0.0.0.0";
/// <summary>
/// Tag associati a ultima versione disponibile, comma separated
/// </summary>
public string RelTagsLast { get; set; } = "";
/// <summary>
/// indica se esista un update alla versione
/// </summary>
public bool HasUpdate { get; set; } = false;
/// <summary>
/// Indica se non si siano trovate versioni
/// </summary>
public bool NotFound { get; set; } = false;
#endregion Public Properties
}
}