TreeViewEntity.cs 775 B

1234567891011121314151617181920212223242526
  1. //----------------------------------------------------------------
  2. //Module Name: TreeViewEntity
  3. //Purpose:
  4. //CopyRight: Muchinfo
  5. //History:
  6. //----------------------------------------------------------------
  7. //DateTime Author Description
  8. //----------------------------------------------------------------
  9. //2014-03-26 deng.yinping Create
  10. //----------------------------------------------------------------
  11. using GalaSoft.MvvmLight;
  12. using System.Collections.Generic;
  13. namespace Muchinfo.MTPClient.Data
  14. {
  15. public class TreeViewEntity : ObservableObject
  16. {
  17. //private bool _isSelected;
  18. public string Key { get; set; }
  19. public string Value { get; set; }
  20. public List<TreeViewEntity> Children { get; set; }
  21. }
  22. }