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;
//
// This is here so CodeMaid doesn't reorganize this document
//
namespace EgwCoreLib.Lux.Data.DbModel.Task
{
///
/// Definizione macro dei Cicli di Lavoro / Job
///
[Table("task_job")]
public class JobModel
{
///
/// ID del record
///
[Key]
public int JobID { get; set; }
///
/// Descrizione del ciclo di lavoro
///
public string Description { get; set; } = "";
///
/// Navigation verso JobStep
///
public virtual ICollection JobStepNav { get; set; } = new List();
}
}