This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/Conversion/ExchangePairs.cs

15 lines
467 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace silverworker_discord.Conversion
{
public class ExchangePairs
{
public string disclaimer{ get; set; }
public string license{ get; set; }
public int timestamp{ get; set; }
public DateTime DateUpdated { get { return DateTime.UnixEpoch.AddSeconds(timestamp); }}
public string Base{ get; set; }
public Dictionary<string, decimal> rates { get; set; }
}
}