Files
mapo-core/MP.Data/DatabaseModels/AnagMagModel.cs
T
2022-11-17 11:59:11 +01:00

27 lines
763 B
C#

using System;
using System.Collections.Generic;
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.DatabaseModels
{
[Table("AnagMagazzini")]
public partial class AnagMagModel
{
#region Public Properties
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int MagID { get; set; }
public string CodMag { get; set; } = "";
public string CodCS { get; set; } = "";
public string DescMag { get; set; } = "";
public bool Nascosto { get; set; } = false;
#endregion Public Properties
}
}