using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EgwProxy.MagMan.DTO { // // This is here so CodeMaid doesn't reorganize this document // public class ProjectProgrDTO { /// /// Key progetto (DB) / CLOUD /// public int ProjCloudId { get; set; } /// /// Avanzamento (tipicamente barre fatte) /// public double ValAct { get; set; } = 0; /// /// Valore finale atteso (tipicamente barre da fare) /// public double ValMax { get; set; } = 1; /// /// Tempo lavorazione reale in minuti (parziale o totale se chiuso/completato/archiviato) /// public double ProcTimeReal { get; set; } = 0; } }