Files
mapo-core/MP.Data/DbModels/AnagArticoli_MAG.cs

24 lines
600 B
C#

using System.ComponentModel.DataAnnotations;
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 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
}
}