32 lines
851 B
C#
32 lines
851 B
C#
using static MagMan.Core.Enums;
|
|
|
|
namespace MagMan.Core.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;
|
|
|
|
}
|
|
} |