c8b049be4f
- maca gestione timer autorefresh componente - manca testing finale - manca clickonce finale
44 lines
1.1 KiB
C#
44 lines
1.1 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.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; } = "";
|
|
|
|
/// <summary>
|
|
/// indica se esista un update alla versione
|
|
/// </summary>
|
|
public bool HasUpdate { get; set; } = false;
|
|
|
|
#endregion Public Properties
|
|
|
|
}
|
|
} |