9 lines
172 B
C#
9 lines
172 B
C#
using System;
|
|
|
|
namespace ToDoList.DataModel;
|
|
|
|
public class ToDoItem
|
|
{
|
|
public string Description { get; set; } = String.Empty;
|
|
public bool IsChecked { get; set; }
|
|
} |