This commit is contained in:
2024-02-22 14:52:53 -05:00
parent 72c94666c5
commit 29b417e3f7
445 changed files with 360852 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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; }
}
}