Timeline: use ObservableCollection instead of DynamicData

This commit is contained in:
2023-08-14 17:15:03 +02:00
parent 8aa8d83598
commit 4381f1b47a
11 changed files with 49 additions and 191 deletions

View File

@@ -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; }
}

View File

@@ -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; }
}