mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Plugin settings - Added button to reload plugin from disk Confirm dialogs - Made cancel text optional so you can hide the button
19 lines
383 B
C#
19 lines
383 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using Artemis.Core;
|
|
using Stylet;
|
|
|
|
namespace Artemis.UI.Screens.Plugins
|
|
{
|
|
public class PluginPrerequisiteActionViewModel : Screen
|
|
{
|
|
|
|
|
|
public PluginPrerequisiteActionViewModel(PluginPrerequisiteAction action)
|
|
{
|
|
Action = action;
|
|
}
|
|
|
|
public PluginPrerequisiteAction Action { get; }
|
|
}
|
|
} |