20 lines
405 B
C#
Executable File
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; }
|
|
}
|
|
}
|