using System.Collections.Generic; namespace FarmmapsApi.Models { public class TaskRequest { public string TaskType { get; set; } public string Delay { get; set; } public Dictionary attributes { get; } public TaskRequest() { attributes = new Dictionary(); } } }