namespace YLErp.Jobs.Configs { public class EodVARCalcJobConfig : Dictionary { public string StartDate { get { string key = nameof(StartDate); string value = string.Empty; if (this.ContainsKey(key)) { value = this[key]; } return value; } set { string key = nameof(StartDate); if (this.ContainsKey(key)) { this[key] = value; } else { this.Add(key, value); } } } } }