5 lines
101 B
C#
5 lines
101 B
C#
public class TodoItem
|
|
{
|
|
public string? Title { get; set; }
|
|
public bool IsDone { get; set; }
|
|
} |