using System.Collections.Generic; namespace Novaloop.PaymoApi.Tasks.Models { public class CreateTaskRequest { public string Name { get; set; } public string Description { get; set; } public int TasklistId { get; set; } public List Users { get; set; } } }