Handle events.

Calculate targetn.
This commit is contained in:
2020-03-24 23:26:02 +01:00
parent 1d9f520f55
commit e6561308e5
8 changed files with 251 additions and 67 deletions

View File

@@ -7,11 +7,11 @@ namespace FarmmapsApi.Models
public string TaskType { get; set; }
public string Delay { get; set; }
public Dictionary<string, string> attributes { get; set; }
public Dictionary<string, string> attributes { get; }
public TaskRequest()
{
this.attributes = new Dictionary<string, string>();
attributes = new Dictionary<string, string>();
}
}
}