37 lines
940 B
C#
37 lines
940 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>
|
|
/// Avanzamento (tipicamente barre fatte)
|
|
/// </summary>
|
|
public double ValAct { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Valore finale atteso (tipicamente barre da fare)
|
|
/// </summary>
|
|
public double ValMax { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// Tempo lavorazione reale in minuti (parziale o totale se chiuso/completato/archiviato)
|
|
/// </summary>
|
|
public double ProcTimeReal { get; set; } = 0;
|
|
|
|
}
|
|
}
|