Wonky.Client/Wonky.Entity/DTO/TaskItemDto.cs
Frede Hundewadt 16b934e3f4 wip
2022-06-21 17:05:21 +02:00

14 lines
No EOL
449 B
C#

namespace Wonky.Entity.DTO;
public class TaskItemDto
{
public string TaskItemId { get; set; } = "";
public string ErpUserId { get; set; } = "";
public string Name { get; set; } = "";
public string Text { get; set; } = "";
public string DueTimestamp { get; set; } = "";
public int Interval { get; set; }
public bool IsCompleted { get; set; }
public bool OverDue { get; set; }
public bool Recurring { get; set; }
}