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
///
/// Nome applicazione
///
public string CodApp { get; set; } = "";
///
/// Versione applicativo corrente
///
public string VersNumCurr { get; set; } = "0.0.0.0";
///
/// Versione applicativo LAST disponibile
///
public string VersNumLast { get; set; } = "0.0.0.0";
///
/// Tag associati a ultima versione disponibile, comma separated
///
public string RelTagsLast { get; set; } = "";
#endregion Public Properties
}
}