Init
This commit is contained in:
14
Model/Item.cs
Normal file
14
Model/Item.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Text;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace TradeBlotter.Model
|
||||
{
|
||||
public class Items : List<Item>
|
||||
{
|
||||
}
|
||||
public class Item
|
||||
{
|
||||
public Item(string v) { Value = v; }
|
||||
public string Value { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user