Wonky.Client/Wonky.Entity/DTO/TaskItemDto.cs

14 lines
449 B
C#
Raw Normal View History

2022-06-21 17:05:21 +02:00
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; }
}