forked from FarmMaps/FarmMapsApiClient
17 lines
385 B
C#
17 lines
385 B
C#
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>();
|
|
}
|
|
}
|
|
} |