Files
2021-09-18 10:55:24 +02:00

22 lines
540 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth.Models
{
public partial class AnagArticoli
{
#region Public Properties
public string CodArticolo { get; set; }
public string CurrRev { get; set; }
public string DescArticolo { get; set; }
public string Disegno { get; set; }
public bool? FlagIsNew { get; set; }
public string ProdRev { get; set; }
public string Tipo { get; set; }
#endregion Public Properties
}
}