Files
mapo-core/MP.Data/DatabaseModels/AnagArticoli.cs
T
Samuele Locatelli a46dc9cb32 Bozza pagine
2022-07-21 14:21:14 +02:00

20 lines
456 B
C#

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