mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
12 lines
165 B
C#
12 lines
165 B
C#
namespace LanMountainDesktop.PluginSdk;
|
|
|
|
public enum SettingsOptionType
|
|
{
|
|
Toggle = 0,
|
|
Select = 1,
|
|
Text = 2,
|
|
Number = 3,
|
|
Path = 4,
|
|
List = 5
|
|
}
|