27 lines
726 B
C#
27 lines
726 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>
|
|
/// 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;
|
|
|
|
}
|
|
} |