25 lines
479 B
C#
Executable File
25 lines
479 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MarketData.MarketDataModel
|
|
{
|
|
public class PriceIndex
|
|
{
|
|
public String Code{get;set;}
|
|
public String Name{get;set;}
|
|
public double Value{get;set;}
|
|
public DateTime AsOf{get;set;}
|
|
public String Source{get;set;}
|
|
}
|
|
|
|
public class PriceIndices : List<PriceIndex>
|
|
{
|
|
public PriceIndices()
|
|
{
|
|
}
|
|
}
|
|
}
|