7 lines
144 B
C#
Raw Normal View History

2022-09-29 23:11:55 -05:00
namespace NftFaucet.Plugins.ProviderPlugins;
2022-08-27 12:37:49 -05:00
public interface IProviderPlugin
{
public IReadOnlyCollection<IProvider> Providers { get; }
2022-08-27 12:37:49 -05:00
}