1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.UI/Screens/Module/ProfileEditor/ProfileEditorPanelViewModel.cs
SpoinkyNL 602a0e6fee Added folder/layer renaming
Implemented profile saving
2019-11-24 23:01:11 +01:00

17 lines
356 B
C#

using Stylet;
namespace Artemis.UI.Screens.Module.ProfileEditor
{
public class ProfileEditorPanelViewModel : Screen
{
public ProfileEditorViewModel ProfileEditorViewModel { get; set; }
public virtual void ActiveProfileChanged()
{
}
public virtual void ActiveProfileUpdated()
{
}
}
}