PropertyDescription.cs 415 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMS.Info
  7. {
  8. public class PropertyDescription: Attribute
  9. {
  10. public string NAME { get; set; }
  11. public string MEMO { get; set; }
  12. public PropertyDescription(string name,string memo)
  13. {
  14. NAME = name;
  15. MEMO = memo;
  16. }
  17. }
  18. }