2022-09-29 23:11:55 -05:00

7 lines
144 B
C#

namespace NftFaucet.Plugins.ProviderPlugins;
public interface IProviderPlugin
{
public IReadOnlyCollection<IProvider> Providers { get; }
}