Initial Commit
This commit is contained in:
22
MarketData/MarketDataLib/MarketDataModel/KeyValue.cs
Executable file
22
MarketData/MarketDataLib/MarketDataModel/KeyValue.cs
Executable file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MarketData.MarketDataModel
|
||||
{
|
||||
public class KeyValue
|
||||
{
|
||||
public KeyValue()
|
||||
{
|
||||
}
|
||||
public KeyValue(String key,String value)
|
||||
{
|
||||
Key=key;
|
||||
Value=value;
|
||||
}
|
||||
public String Key{get;set;}
|
||||
public String Value{get;set;}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user