using MECF.Framework.Common.CommonData; using MECF.Framework.UI.Client.CenterViews.Editors.Sequence; using System.Collections.ObjectModel; namespace MECF.Framework.UI.Client.CenterViews.Core { public class ProcessTypeFileItem : NotifiableItem { public string ProcessType { get; set; } public ObservableCollection FileListByProcessType { get; set; } private ObservableCollection filterFileListByProcessType; public ObservableCollection FilterFileListByProcessType { get => filterFileListByProcessType; set { filterFileListByProcessType = value; InvokePropertyChanged(nameof(FilterFileListByProcessType)); } } public ProcessTypeFileItem() { FileListByProcessType = new ObservableCollection(); FilterFileListByProcessType = new ObservableCollection(); } } }