using System.Text; using System.Collections.Generic; namespace TradeBlotter.Model { public class Items : List { } public class Item { public Item(string v) { Value = v; } public string Value { get; private set; } } }