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