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 df_instance_attribute { [Key] [StringLength(30)] public string attribute_name { get; set; } [StringLength(100)] public string attribute_desc { get; set; } [StringLength(30)] public string string_code { get; set; } [StringLength(45)] public string string_value { get; set; } } }