mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
13 lines
374 B
C#
13 lines
374 B
C#
namespace LanMontainDesktop.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);
|