COmpleto rename MP.Data

This commit is contained in:
2021-05-17 13:33:13 +02:00
parent 9aa783373f
commit a90a62cd7a
52 changed files with 2769 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class VTcStat
{
public string CodArticolo { get; set; }
public string CodGruppo { get; set; }
public string IdxMacchina { get; set; }
public string CodMacchina { get; set; }
public string DescMacchina { get; set; }
public decimal TcStat { get; set; }
public int TcType { get; set; }
}
}