Created
May 10, 2018 00:34
-
-
Save fluxdigital/36421d9f3660bb860d8af5a6666b0e93 to your computer and use it in GitHub Desktop.
Model for the CryptoCoin Json Response
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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