25 lines
709 B
C#
25 lines
709 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("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
|
|
}
|
|
} |