MonodroidStockPortfolio/MonoStockPortfolio.Entities/StockQuote.cs
2010-11-02 12:26:36 -04:00

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; }
}
}