using System;
using System.Collections.Generic;
using System.Text;
namespace CryptoExchange.Net.Objects
{
///
/// An alias used by the exchange for an asset commonly known by another name
///
public class AssetAlias
{
///
/// The name of the asset on the exchange
///
public string ExchangeAssetName { get; set; }
///
/// The name of the asset as it's commonly known
///
public string CommonAssetName { get; set; }
///
/// ctor
///
public AssetAlias(string exchangeName, string commonName)
{
ExchangeAssetName = exchangeName;
CommonAssetName = commonName;
}
}
}