Files
mapo-core/MP.Data/DatabaseModels/StatsAnagArticoli.cs
T
2022-07-21 14:57:51 +02:00

19 lines
417 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class StatsAnagArticoli
{
#region Public Properties
public string CodArticolo { get; set; }
public string DescArticolo { get; set; }
public string Disegno { get; set; }
public string Tipo { get; set; }
#endregion Public Properties
}
}