20 lines
413 B
C#
20 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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()
|
|
{
|
|
}
|
|
}
|
|
}
|