17 lines
375 B
C#
Raw Normal View History

2020-03-24 09:47:08 +01:00
using System.Collections.Generic;
namespace FarmmapsApi.Models
{
public class TaskRequest
{
public string TaskType { get; set; }
public string Delay { get; set; }
2020-03-24 23:26:02 +01:00
public Dictionary<string, string> attributes { get; }
2020-03-24 09:47:08 +01:00
public TaskRequest()
{
2020-03-24 23:26:02 +01:00
attributes = new Dictionary<string, string>();
2020-03-24 09:47:08 +01:00
}
}
}