namespace Warehouse.Models.mesModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class config_wks_attr_allowed { [Key] [StringLength(30)] public string attribute_name { get; set; } [Required] [StringLength(100)] public string attribute_desc { get; set; } public byte allowed_flag { get; set; } } }