Skip to content

Instantly share code, notes, and snippets.

@fluxdigital
Created May 10, 2018 00:32
Show Gist options
  • Save fluxdigital/964d6ccbca01f65bb078e8736cafb610 to your computer and use it in GitHub Desktop.
Save fluxdigital/964d6ccbca01f65bb078e8736cafb610 to your computer and use it in GitHub Desktop.
The root response Item from the www.cryptocompare.com API
namespace FluxDigital.Sitecore.Extensions.Models
{
public class RootCryptoResponse
{
public string Response { get; set; }
public string Message { get; set; }
public string BaseImageUrl { get; set; }
public string BaseLinkUrl { get; set; }
[JsonProperty("Data")]
public IReadOnlyDictionary<string, CryptoCoin> Coins { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment