Files
mapo-core/MP.Data/DatabaseModels/AnagArticoli_MAG.cs
T
2022-12-07 12:14:03 +01:00

29 lines
722 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DatabaseModels
{
[Table("AnagArticoli")]
public partial class AnagArticoli_MAG
{
#region Public Properties
[Key]
public string CodArt { get; set; }
public string DescrArt { get; set; }
public string CodArtExt { get; set; }
public string CodStato { get; set; }
#endregion Public Properties
}
}