mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 12:38:30 +00:00
19 lines
380 B
C#
19 lines
380 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NftFaucetRadzen.Models;
|
|
|
|
public class TokenMetadata
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("description")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonProperty("image")]
|
|
public string Image { get; set; }
|
|
|
|
[JsonProperty("external_url")]
|
|
public string ExternalUrl { get; set; }
|
|
}
|