Files
marketdata/MarketDataLib/MarketDataModel/Cashflows.cs
2024-02-22 14:52:53 -05:00

20 lines
386 B
C#

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