mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 04:28:29 +00:00
11 lines
240 B
C#
11 lines
240 B
C#
namespace NftFaucetRadzen.Plugins;
|
|
|
|
public interface IToken
|
|
{
|
|
public Guid Id { get; }
|
|
public string Name { get; }
|
|
public string Description { get; }
|
|
public DateTime CreatedAt { get; }
|
|
public ITokenMedia Image { get; }
|
|
}
|