39 lines
937 B
C#
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
|
|
|
|
}
|
|
} |