32 lines
760 B
C#
32 lines
760 B
C#
namespace YLErp.Jobs.Configs
|
|
{
|
|
public class EodVARCalcJobConfig : Dictionary<string, string>
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|