//---------------------------------------------------------------- //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 Children { get; set; } } }