Files
mapo-core/MP.AppAuth/Models/Macchine.cs
T
2021-09-18 10:55:24 +02:00

35 lines
923 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth.Models
{
public partial class Macchine
{
#region Public Constructors
public Macchine()
{
Gruppi2Macchines = new HashSet<Gruppi2Macchine>();
}
#endregion Public Constructors
#region Public Properties
public string CodMacchina { get; set; }
public int ColNum { get; set; }
public string Css { get; set; }
public string Descrizione { get; set; }
public virtual ICollection<Gruppi2Macchine> Gruppi2Macchines { get; set; }
public string IdxMacchina { get; set; }
public string Locazione { get; set; }
public string Nome { get; set; }
public string Note { get; set; }
public int RowNum { get; set; }
public string Url { get; set; }
#endregion Public Properties
}
}