mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 00:46:12 +02:00
18 lines
425 B
C#
18 lines
425 B
C#
using DesktopMagicPluginAPI.Inputs;
|
|
|
|
namespace DesktopMagic.Plugins
|
|
{
|
|
internal class SettingElement
|
|
{
|
|
public Element Element { get; }
|
|
public string Name { get; }
|
|
public int OrderIndex { get; }
|
|
|
|
public SettingElement(Element element, string name, int orderIndex)
|
|
{
|
|
Element = element;
|
|
Name = name;
|
|
OrderIndex = orderIndex;
|
|
}
|
|
}
|
|
} |