Files
LanMountainDesktop/LanMontainDesktop/ComponentSystem/DesktopComponentDefinition.cs

13 lines
374 B
C#
Raw Normal View History

2026-02-28 12:30:16 +08:00
namespace LanMontainDesktop.ComponentSystem;
public sealed record DesktopComponentDefinition(
string Id,
string DisplayName,
string IconKey,
string Category,
int MinWidthCells,
int MinHeightCells,
bool AllowStatusBarPlacement,
2026-03-03 11:10:57 +08:00
bool AllowDesktopPlacement,
DesktopComponentResizeMode ResizeMode = DesktopComponentResizeMode.Proportional);