19 lines
417 B
C#
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
|
|
}
|
|
} |