Files
mapo-core/MP.Data/DatabaseModels/CommentiModel.cs
T
2023-10-09 09:00:01 +02:00

30 lines
777 B
C#

using System;
using System.Collections.Generic;
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.DatabaseModels
{
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; } = "";
#endregion Public Properties
}
}