// // This is here so CodeMaid doesn't reorganize this document // namespace EgwCoreLib.Lux.Data.DbModel.Job { /// /// Fase di lavorazione / ProductionStage /// [Table("task_phase")] public class PhaseModel { /// /// ID del record /// [Key] public int PhaseID { get; set; } /// /// Condice Fase x Raggruppamento / Ordinamento /// public string CodPhase { get; set; } = "000"; /// /// Nome Fase /// public string Name { get; set; } = ""; /// /// Descrizione /// public string Description { get; set; } = ""; } }