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