Skip to content

Instantly share code, notes, and snippets.

@fluxdigital
Created May 10, 2018 00:34
Show Gist options
  • Save fluxdigital/36421d9f3660bb860d8af5a6666b0e93 to your computer and use it in GitHub Desktop.
Save fluxdigital/36421d9f3660bb860d8af5a6666b0e93 to your computer and use it in GitHub Desktop.
Model for the CryptoCoin Json Response
namespace FluxDigital.Sitecore.Extensions.Models
{
public class CryptoCoin
{
public string Id { get; set; }
public string CoinName { get; set; }
public string Name { get; set; }
public string FullName { get; set; }
public string Symbol { get; set; }
public string Url { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment