Files
LanMountainDesktop/LanMontainDesktop/ComponentSystem/DesktopComponentDefinition.cs
lincube 473a84e47b 0.1.8
2026-02-28 12:30:16 +08:00

12 lines
289 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);