mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
10 lines
298 B
C#
10 lines
298 B
C#
using System.Collections.ObjectModel;
|
|
using Artemis.Core;
|
|
using Artemis.UI.Shared;
|
|
|
|
namespace Artemis.UI.Screens.ProfileEditor.Properties;
|
|
|
|
public abstract class PropertyViewModelBase : ViewModelBase
|
|
{
|
|
public abstract ReadOnlyObservableCollection<ILayerPropertyKeyframe> Keyframes { get; }
|
|
} |