23 lines
481 B
C#
23 lines
481 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MarketData.MarketDataModel
|
|
{
|
|
public class PremarketElement
|
|
{
|
|
public String Market { get; set; }
|
|
public double ChangePercent { get; set; }
|
|
public double ChangeValue { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
}
|
|
public class PremarketElements:List<PremarketElement>
|
|
{
|
|
public PremarketElements()
|
|
{
|
|
}
|
|
}
|
|
}
|