mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
7 lines
144 B
C#
7 lines
144 B
C#
namespace NftFaucet.Plugins.ProviderPlugins;
|
|
|
|
public interface IProviderPlugin
|
|
{
|
|
public IReadOnlyCollection<IProvider> Providers { get; }
|
|
}
|