Files
Moonlight/Moonlight.Client/Interfaces/IAppLoader.cs
2024-10-30 13:34:19 +01:00

7 lines
160 B
C#

namespace Moonlight.Client.Interfaces;
public interface IAppLoader
{
public int Priority { get; }
public Task Load(IServiceProvider serviceProvider);
}