mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
15 lines
208 B
C#
15 lines
208 B
C#
namespace LanMountainDesktop.PluginSdk;
|
|
|
|
public enum PluginCornerRadiusPreset
|
|
{
|
|
Default = 0,
|
|
Micro = 1,
|
|
Xs = 2,
|
|
Sm = 3,
|
|
Md = 4,
|
|
Lg = 5,
|
|
Xl = 6,
|
|
Island = 7,
|
|
Component = 8
|
|
}
|