Files
2025-03-25 21:42:32 -04:00

20 lines
405 B
C#
Executable File

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