mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 03:58:23 +00:00
9 lines
170 B
C#
9 lines
170 B
C#
using NftFaucet.Plugins.Models.Abstraction;
|
|
|
|
namespace NftFaucet.Plugins;
|
|
|
|
public interface INetworkPlugin
|
|
{
|
|
public IReadOnlyCollection<INetwork> Networks { get; }
|
|
}
|