mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-26 11:19:24 +00:00
14 lines
No EOL
478 B
C#
14 lines
No EOL
478 B
C#
namespace MonoStockPortfolio.Entities
|
|
{
|
|
public class StockQuote
|
|
{
|
|
public string Ticker { get; set; }
|
|
public decimal LastTradePrice { get; set; }
|
|
public string Name { get; set; }
|
|
public string Volume { get; set; }
|
|
public decimal Change { get; set; }
|
|
public string LastTradeTime { get; set; }
|
|
public decimal RealTimeLastTradePrice { get; set; }
|
|
public string ChangeRealTime { get; set; }
|
|
}
|
|
} |