mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
389 B
C#
19 lines
389 B
C#
using Stylet;
|
|
|
|
namespace Artemis.UI.Installer.Screens.Steps
|
|
{
|
|
public abstract class ConfigurationStep : Screen
|
|
{
|
|
/// <inheritdoc />
|
|
protected ConfigurationStep()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected ConfigurationStep(IModelValidator validator) : base(validator)
|
|
{
|
|
}
|
|
|
|
public abstract int Order { get; }
|
|
}
|
|
} |