This commit is contained in:
lincube
2026-02-28 12:30:16 +08:00
parent 310c0f224f
commit 473a84e47b
13 changed files with 750 additions and 327 deletions

View File

@@ -0,0 +1,8 @@
using System.Collections.Generic;
namespace LanMontainDesktop.ComponentSystem.Extensions;
public interface IComponentExtensionProvider
{
IReadOnlyList<DesktopComponentDefinition> GetComponents();
}