Files

35 lines
878 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
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; } = "";
/// <summary>
/// Hard coded 999
/// </summary>
[NotMapped]
public int IdxTipo { get; set; } = 999;
#endregion Public Properties
}
}