This repository has been archived on 2025-05-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novaloop.paymoapi/src/Tasks/Models/CreateTaskRequest.cs
Matthias Langhard 75a687e31e chore: initial commit
2020-12-09 12:36:26 +01:00

12 lines
304 B
C#

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<int> Users { get; set; }
}
}