MonodroidStockPortfolio/MonoStockPortfolio.Entities/StockDataItem.cs

24 lines
629 B
C#
Raw Normal View History

namespace MonoStockPortfolio.Entities
2010-11-02 16:26:36 +00:00
{
public enum StockDataItem
{
[StringValue("Change")]
2011-02-06 01:48:55 +00:00
Change = 0,
2010-11-02 16:26:36 +00:00
[StringValue("Gain/Loss")]
2011-02-06 01:48:55 +00:00
GainLoss = 1,
2010-11-02 16:26:36 +00:00
[StringValue("Ticker")]
2011-02-06 01:48:55 +00:00
Ticker = 2,
2010-11-02 16:26:36 +00:00
[StringValue("Time")]
2011-02-06 01:48:55 +00:00
Time = 3,
2010-11-02 16:26:36 +00:00
[StringValue("Volume")]
2011-02-06 01:48:55 +00:00
Volume = 4,
2010-11-02 16:26:36 +00:00
[StringValue("Price")]
2011-02-06 01:48:55 +00:00
LastTradePrice = 5,
2010-11-02 16:26:36 +00:00
[StringValue("Price-RT")]
2011-02-06 01:48:55 +00:00
RealTimeLastTradeWithTime = 6,
2010-11-02 16:26:36 +00:00
[StringValue("Change-RT")]
2011-02-06 01:48:55 +00:00
ChangeRealTime = 7,
2010-11-02 16:26:36 +00:00
[StringValue("Gain/Loss-RT")]
2011-02-06 01:48:55 +00:00
GainLossRealTime = 8
2010-11-02 16:26:36 +00:00
}
}