15 lines
247 B
C#
15 lines
247 B
C#
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; }
|
|
}
|
|
}
|