24 lines
677 B
C#
24 lines
677 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class R
|
|
{
|
|
public DateTime DataOraRif { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public string Causale { get; set; }
|
|
public string Descrizione { get; set; }
|
|
public string Note { get; set; }
|
|
public int Qta { get; set; }
|
|
public string KeyRichiesta { get; set; }
|
|
public int IdxOdl { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public int MatrOpr { get; set; }
|
|
public string Cognome { get; set; }
|
|
public string Nome { get; set; }
|
|
}
|
|
}
|