Files
lux/EgwCoreLib.Lux.Data/DbModel/PhaseModel.cs
T
2025-07-22 19:14:01 +02:00

32 lines
678 B
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
{
[Table("RegPhase")]
public class PhaseModel
{
/// <summary>
/// ID del record
/// </summary>
[Key]
public int PhaseID { get; set; }
/// <summary>
/// Descrizione
/// </summary>
public string Description { get; set; } = "";
}
}