Files
LanMountainDesktop/LanMountainDesktop/ComponentSystem/DesktopComponentDefinition.cs
lincube f78a56cb2c 0.3.5
2026-03-04 15:22:52 +08:00

13 lines
378 B
C#

namespace LanMountainDesktop.ComponentSystem;
public sealed record DesktopComponentDefinition(
string Id,
string DisplayName,
string IconKey,
string Category,
int MinWidthCells,
int MinHeightCells,
bool AllowStatusBarPlacement,
bool AllowDesktopPlacement,
DesktopComponentResizeMode ResizeMode = DesktopComponentResizeMode.Proportional);