mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 21:15:30 +00:00
7 lines
146 B
C#
7 lines
146 B
C#
|
namespace NftFaucetRadzen.Plugins.UploadPlugins;
|
||
|
|
||
|
public interface IUploadPlugin
|
||
|
{
|
||
|
public IReadOnlyCollection<IUploader> Uploaders { get; }
|
||
|
}
|