Files
limanapp/EgwControlCenter.Core/Models/VersStatusDTO.cs
T
Samuele Locatelli 97a2b3fc65 Update controlCenter
2024-09-19 10:07:57 +02:00

39 lines
937 B
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.Models
{
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; } = "";
#endregion Public Properties
}
}