using EgwCoreLib.Lux.Data.DbModel.Cost;
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.Task
{
///
/// Definizione driver di calcolo dall'Engine x la stima del CostDriver equivalente tempi/costi
///
[Table("task_job_driver")]
public class JobDriverModel
{
[Key]
public int JobDriverID { get; set; }
///
/// Nome variabile ricevuta
/// e.g. "LeadTime", "FlowTime"
///
public string Name { get; set; } = "";
///
/// Descrizione
/// e.g. "tempo netto di lavorazione", "tempo d attravesamento"
///
public string Descript { get; set; } = "";
}
}