Files

15 lines
208 B
C#
Raw Permalink Normal View History

2026-03-20 22:37:37 +08:00
namespace LanMountainDesktop.PluginSdk;
public enum PluginCornerRadiusPreset
{
Default = 0,
Micro = 1,
Xs = 2,
Sm = 3,
Md = 4,
Lg = 5,
Xl = 6,
2026-03-30 15:28:51 +08:00
Island = 7,
Component = 8
2026-03-20 22:37:37 +08:00
}