using System; namespace ToDoList.DataModel; public class ToDoItem { public string Description { get; set; } = String.Empty; public bool IsChecked { get; set; } }