Files
lux/EgwCoreLib.Lux.Data/DbModel/Task/PhaseModel.cs
T
2025-10-30 10:06:21 +01:00

42 lines
1.0 KiB
C#

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