using System; using System.Linq; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; // // This is here so CodeMaid doesn't reorganize this document // namespace GWMS.Data.DatabaseModels { /// /// Tabella Fornitori /// [Table("Supplier")] public class SupplierModel { #region Public Properties [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int SupplierId { get; set; } [MaxLength(100)] public string SupplierCode { get; set; } = ""; [MaxLength(250)] public string SupplierDesc { get; set; } = ""; #endregion Public Properties } }