using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info { public class PropertyDescription: Attribute { public string NAME { get; set; } public string MEMO { get; set; } public PropertyDescription(string name,string memo) { NAME = name; MEMO = memo; } } }