17 lines
426 B
C#
17 lines
426 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Knoks.Core.Entities
|
|
{
|
|
public class Ticker
|
|
{
|
|
//public int? TickerId { get; set; }
|
|
public string TickerDisplayName { get; set; }
|
|
public string Currency1 { get; set; }
|
|
public string Currency2 { get; set; }
|
|
public string Currency { get; set; }
|
|
public string TickerSymbol { get; set; }
|
|
}
|
|
}
|