mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 04:28:29 +00:00
10 lines
211 B
C#
10 lines
211 B
C#
namespace NftFaucetRadzen.Plugins;
|
|
|
|
public interface ITokenMedia
|
|
{
|
|
public string FileName { get; }
|
|
public string FileType { get; }
|
|
public string FileData { get; }
|
|
public long FileSize { get; }
|
|
}
|