Files
mapo-core/MP.Data/DatabaseModels/Macchine.cs
T
2021-05-18 19:26:49 +02:00

19 lines
411 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class Macchine
{
#region Public Properties
public string CodMacchina { get; set; }
public string Descrizione { get; set; }
public string IdxMacchina { get; set; }
public string Nome { get; set; }
#endregion Public Properties
}
}