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