| 1234567891011121314151617181920212223242526 |
- //----------------------------------------------------------------
- //Module Name: TreeViewEntity
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime Author Description
- //----------------------------------------------------------------
- //2014-03-26 deng.yinping Create
- //----------------------------------------------------------------
- using GalaSoft.MvvmLight;
- using System.Collections.Generic;
- namespace Muchinfo.MTPClient.Data
- {
- public class TreeViewEntity : ObservableObject
- {
- //private bool _isSelected;
- public string Key { get; set; }
- public string Value { get; set; }
- public List<TreeViewEntity> Children { get; set; }
- }
- }
|