mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
13 lines
383 B
C#
13 lines
383 B
C#
using Artemis.Core.Plugins.LayerEffects;
|
|
using Stylet;
|
|
|
|
namespace Artemis.UI.Screens.ProfileEditor
|
|
{
|
|
public class LayerEffectSettingsWindowViewModel : Conductor<EffectConfigurationViewModel>
|
|
{
|
|
public LayerEffectSettingsWindowViewModel(EffectConfigurationViewModel configurationViewModel)
|
|
{
|
|
ActiveItem = configurationViewModel;
|
|
}
|
|
}
|
|
} |