forked from FarmMaps/FarmMapsApiClient
Initial commit
This commit is contained in:
17
FarmmapsApi/Models/TaskRequest.cs
Normal file
17
FarmmapsApi/Models/TaskRequest.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace FarmmapsApi.Models
|
||||
{
|
||||
public class TaskRequest
|
||||
{
|
||||
public string TaskType { get; set; }
|
||||
public string Delay { get; set; }
|
||||
|
||||
public Dictionary<string, string> attributes { get; set; }
|
||||
|
||||
public TaskRequest()
|
||||
{
|
||||
this.attributes = new Dictionary<string, string>();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user