21 lines
466 B
C#
21 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.FileData.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; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|