33 lines
865 B
C#
33 lines
865 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DbModels
|
|
{
|
|
public partial class MacchineStatModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key]
|
|
public string IdxMacchina { get; set; }
|
|
/// <summary>
|
|
/// Cod macchina
|
|
/// </summary>
|
|
public string CodMacchina { get; set; } = "";
|
|
/// <summary>
|
|
/// Nome macchina
|
|
/// </summary>
|
|
public string Nome { get; set; } = "";
|
|
/// <summary>
|
|
/// Descrizione macchina
|
|
/// </summary>
|
|
public string Descrizione { get; set; } = "";
|
|
public bool Energy { get; set; } = false;
|
|
public bool Deleted { get; set; } = false;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |