Files
magman/EgwProxy.MagMan/DTO/ProjectProgrDTO.cs
T
2024-06-29 10:12:13 +02:00

32 lines
815 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwProxy.MagMan.DTO
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
public class ProjectProgrDTO
{
/// <summary>
/// Key progetto (DB) / CLOUD
/// </summary>
public int ProjCloudId { get; set; }
/// <summary>
/// Percentuale di completamento progetto (barre fatte/ totale)
/// </summary>
public double PercCompletion { get; set; } = 0;
/// <summary>
/// Tempo lavorazione reale in minuti (parziale o totale se chiuso/completato/archiviato)
/// </summary>
public double ProcTimeReal { get; set; } = 0;
}
}