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 { /// /// ID del record /// [Key] public int JobID { get; set; } /// /// Descrizione del ciclo /// public string Description { get; set; } = ""; } }