7 lines
150 B
C#
Raw Normal View History

2022-08-27 12:37:49 -05:00
namespace NftFaucetRadzen.Plugins.ProviderPlugins;
public interface IProviderPlugin
{
public IReadOnlyCollection<IProvider> Providers { get; }
2022-08-27 12:37:49 -05:00
}