27 lines
579 B
C#
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; } = "";
|
|
}
|
|
}
|