Files
LanMountainDesktop/LanMontainDesktop/ComponentSystem/Extensions/IComponentExtensionProvider.cs

9 lines
204 B
C#
Raw Normal View History

2026-02-28 12:30:16 +08:00
using System.Collections.Generic;
namespace LanMontainDesktop.ComponentSystem.Extensions;
public interface IComponentExtensionProvider
{
IReadOnlyList<DesktopComponentDefinition> GetComponents();
}