using System; using System.Collections.Generic; namespace MarketData.MarketDataModel { public class Cashflows : List { } public class CashflowElement { public CashflowElement(DateTime asof, double cashflow) { AsOf = asof; Cashflow = cashflow; } public DateTime AsOf { get; set; } public double Cashflow { get; set; } } }