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

27 lines
579 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;
namespace EgwCoreLib.Lux.Data.DbModel
{
[Table("JobList")]
public class JobModel
{
/// <summary>
/// ID del record
/// </summary>
[Key]
public int JobID { get; set; }
/// <summary>
/// Descrizione del ciclo
/// </summary>
public string Description { get; set; } = "";
}
}