mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 12:08:32 +00:00
22 lines
463 B
C#
22 lines
463 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NftFaucet.Domain.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("animation_url")]
|
|
public string AnimationUrl { get; set; }
|
|
|
|
[JsonProperty("external_url")]
|
|
public string ExternalUrl { get; set; }
|
|
}
|