Files
lux/EgwCoreLib.Lux.Data/DbModel/Production/ProductionPlantModel.cs
T
2025-12-19 12:10:01 +01:00

26 lines
671 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;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace EgwCoreLib.Lux.Data.DbModel.Production
{
/// <summary>
/// Macchine / Impianti di produzione gestiti
/// </summary>
[Table("production_plant")]
public class ProductionPlantModel
{
[Key]
public string ProdPlantCod { get; set; } = "";
public string ProdPlantDescript { get; set; } = "";
}
}