mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 16:14:28 +08:00
9 lines
204 B
C#
9 lines
204 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace LanMontainDesktop.ComponentSystem.Extensions;
|
||
|
|
|
||
|
|
public interface IComponentExtensionProvider
|
||
|
|
{
|
||
|
|
IReadOnlyList<DesktopComponentDefinition> GetComponents();
|
||
|
|
}
|