19 lines
488 B
C#
19 lines
488 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VDdbLight
|
|
{
|
|
public string CodMacchina { get; set; }
|
|
public string DescMacchina { get; set; }
|
|
public DateTime InizioStato { get; set; }
|
|
public string Stato { get; set; }
|
|
public double? DurataMinuti { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public string Operatore { get; set; }
|
|
}
|
|
}
|