using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
//
// This is here so CodeMaid doesn't reorganize this document
//
namespace MP.Data.DbModels
{
public partial class CommentiModel
{
#region Public Properties
[MaxLength(50)]
public string IdxMacchina { get; set; } = "NA";
public DateTime InizioStato { get; set; } = DateTime.Now;
public int IdxODL{ get; set; } = 0;
public string CodArticolo { get; set; } = "";
public string Value { get; set; } = "";
public string Operatore { get; set; } = "";
///
/// Hard coded 999
///
[NotMapped]
public int IdxTipo { get; set; } = 999;
#endregion Public Properties
}
}