using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; // // This is here so CodeMaid doesn't reorganize this document // namespace EgwCoreLib.Lux.Data.DbModel.Task { /// /// 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; } = ""; } }