25 lines
720 B
C#
25 lines
720 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[Table("AnagArticoli")]
|
|
public partial class AnagArticoliModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public string CodArticolo { get; set; }
|
|
public string DescArticolo { get; set; }
|
|
public string Disegno { get; set; }
|
|
public string CurrRev { get; set; }
|
|
public string ProdRev { get; set; }
|
|
public bool FlagIsNew { get; set; }
|
|
public string Tipo { get; set; }
|
|
public string Azienda { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |