28 lines
630 B
C#
28 lines
630 B
C#
namespace YLErp.Web.Models
|
|
{
|
|
public class GetSwapObservationDateRequest
|
|
{
|
|
public DateTime startDate { get; set; }
|
|
|
|
public DateTime endDate { get; set; }
|
|
|
|
public string termStr { get; set; }
|
|
|
|
public string holidayAdjustment { get; set; }
|
|
|
|
public bool alignEnd { get; set; }
|
|
|
|
public string calcMode { get; set; }
|
|
|
|
public string calendar { get; set; }
|
|
|
|
public int settlementRules { get; set; }
|
|
}
|
|
|
|
public class SwapObservationDateResult
|
|
{
|
|
public DateTime ObservationDate { get; set; }
|
|
|
|
public DateTime SettleDate { get; set; }
|
|
}
|
|
} |