Timeline: use ObservableCollection instead of DynamicData
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
using FileTime.Core.Models;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace FileTime.App.Core.ViewModels.Timeline;
|
||||
|
||||
public interface IParallelCommandsViewModel
|
||||
{
|
||||
BindedCollection<ICommandTimeStateViewModel> Commands { get; }
|
||||
ObservableCollection<ICommandTimeStateViewModel> Commands { get; }
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
using FileTime.Core.Models;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace FileTime.App.Core.ViewModels.Timeline;
|
||||
|
||||
public interface ITimelineViewModel
|
||||
{
|
||||
BindedCollection<IParallelCommandsViewModel> ParallelCommandsGroups { get; }
|
||||
ObservableCollection<IParallelCommandsViewModel> ParallelCommandsGroups { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user