31 lines
962 B
C#
31 lines
962 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class RegistroScartiModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public string IdxMacchina { get; set; } = "";
|
|
public DateTime DataOra { get; set; } = DateTime.Now;
|
|
public string Causale { get; set; } = "";
|
|
public string Operatore { get; set; } = "";
|
|
|
|
public int Qta { get; set; } = 0;
|
|
public string Note { get; set; } = "";
|
|
public string CodArticolo { get; set; } = "";
|
|
public int MatrOpr { get; set; } = 0;
|
|
public DateTime? DataOraProdRec { get; set; } = null;
|
|
public string Descrizione { get; set; } = "";
|
|
public string cssClass { get; set; } = "";
|
|
public string icona { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |