using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TodoDetails.Model
{
    public class Todo
    {
        public string? Title { get; set; }
        public string? Description { get; set; }
        public bool IsDone { get; set; }
        public string? Category { get; set; } = "Default";
        public DateTime DueDate { get; set; }
    }
}