29 lines
860 B
C#
29 lines
860 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class ResScarti
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Causale { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public string CodMacchina { get; set; }
|
|
public string Cognome { get; set; }
|
|
public DateTime DataOraRif { get; set; }
|
|
public string DescArticolo { get; set; } = "";
|
|
public string Descrizione { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public int IdxOdl { get; set; }
|
|
public string KeyRichiesta { get; set; }
|
|
public int MatrOpr { get; set; }
|
|
public string Nome { get; set; }
|
|
public string Note { get; set; }
|
|
public int Qta { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |