mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 12:08:32 +00:00
9 lines
167 B
C#
9 lines
167 B
C#
using NftFaucet.Plugins.Models.Abstraction;
|
|
|
|
namespace NftFaucet.Plugins;
|
|
|
|
public interface IWalletPlugin
|
|
{
|
|
public IReadOnlyCollection<IWallet> Wallets { get; }
|
|
}
|