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

9 lines
204 B
C#

using System.Collections.Generic;
namespace LanMontainDesktop.ComponentSystem.Extensions;
public interface IComponentExtensionProvider
{
IReadOnlyList<DesktopComponentDefinition> GetComponents();
}