ViewControlItem.cs 693 B

123456789101112131415161718192021222324252627
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:ViewControlItem
  3. * 作者:xulisong
  4. * 创建时间: 2019/5/16 11:53:23
  5. * 版本号:v1.0
  6. * -------------------------------------------------------------------------*/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. namespace LRH.Tool.ViewConfigManager
  13. {
  14. public class ViewControlItem
  15. {
  16. /// <summary>
  17. /// 对象Id
  18. /// </summary>
  19. public int Id { get; set; }
  20. /// <summary>
  21. /// 对象描述
  22. /// </summary>
  23. public int Description { get; set; }
  24. }
  25. }