Files
LanMountainDesktop/LanMountainDesktop/ComponentSystem/DesktopComponentDefinition.cs
2026-06-07 00:40:48 +08:00

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);