using Prism.Mvvm; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.Model { /// /// 文件信息 /// public class DataLogFile:BindableBase { private ObservableCollection _SubFiles; /// /// 子文件信息 /// public ObservableCollection SubFiles { get { return _SubFiles; } set { _SubFiles = value; RaisePropertyChanged(); } } private string _Ico; /// /// 图标 /// public string Ico { get { return _Ico; } set { _Ico = value; RaisePropertyChanged(); } } private string _Content; /// /// 内容 /// public string Content { get { return _Content; } set { _Content = value; RaisePropertyChanged(); } } } }