Files
lux/EgwCoreLib.Lux.Data/DbModel/Cost/CostDriverModel.cs
T
2025-10-28 12:09:41 +01:00

43 lines
1.1 KiB
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;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace EgwCoreLib.Lux.Data.DbModel.Cost
{
/// <summary>
/// Rappresenta la definizione di un Driver Risorsa da convertire tipicamente in WorkOur (driver di ResourceModel)
/// </summary>
[Table("cost_driver")]
public class CostDriverModel
{
[Key]
public int CostDriverID { get; set; }
/// <summary>
/// Nome driver
/// e.g. "WorkHour"
/// </summary>
public string Name { get; set; } = "";
/// <summary>
/// Nome dell'UM
/// e.g. "h", "m"
/// </summary>
public string Unit { get; set; } = "";
/// <summary>
/// Descrizione driver
/// e.g. "Ore lavorate per fase"
/// </summary>
public string Descript { get; set; } = "";
}
}