mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-24 02:14:26 +08:00
15 lines
457 B
C#
15 lines
457 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,
|
|
string? Description = null,
|
|
string? DescriptionLocalizationKey = null);
|