20 using Newtonsoft.Json;
21 using System.Collections.Generic;
80 public override double Value
99 var result =
new Dictionary<string, double>();
100 foreach (var kvp
in new[] {
new Tuple<string, double>(
"1M",
OneMonth),
new Tuple<string, double>(
"2M",
TwoMonths),
new Tuple<string, double>(
"3M",
ThreeMonths),
new Tuple<string, double>(
"6M",
SixMonths),
new Tuple<string, double>(
"9M",
NineMonths),
new Tuple<string, double>(
"12M",
TwelveMonths) })
104 result[kvp.Item1] = kvp.Item2;