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; } }