mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
29 lines
No EOL
707 B
C#
29 lines
No EOL
707 B
C#
using FileHelpers;
|
|
|
|
namespace MonoStockPortfolio.Core.StockData
|
|
{
|
|
[DelimitedRecord(",")]
|
|
public class YahooFinanceStockData
|
|
{
|
|
[FieldQuoted(QuoteMode.OptionalForBoth)]
|
|
public string Ticker;
|
|
|
|
public decimal LastTradePrice;
|
|
|
|
[FieldQuoted(QuoteMode.OptionalForBoth)]
|
|
public string Name;
|
|
|
|
public string Volume;
|
|
|
|
public decimal Change;
|
|
|
|
[FieldQuoted(QuoteMode.OptionalForBoth)]
|
|
public string LastTradeTime;
|
|
|
|
[FieldQuoted(QuoteMode.OptionalForBoth)]
|
|
public string RealTimeLastTradeWithTime;
|
|
|
|
[FieldQuoted(QuoteMode.OptionalForBoth)]
|
|
public string ChangeRealTime;
|
|
}
|
|
} |