Files
TradeBlotter/Model/Item.cs
2024-02-23 06:58:53 -05:00

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; }
}
}