Initial Commit
This commit is contained in:
19
MarketData/MarketDataLib/MarketDataModel/Cashflows.cs
Executable file
19
MarketData/MarketDataLib/MarketDataModel/Cashflows.cs
Executable 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user