Files
Gainsight/TodoList/TodoItem.cs

5 lines
101 B
C#
Raw Normal View History

2022-06-13 08:50:32 -04:00
public class TodoItem
{
public string? Title { get; set; }
public bool IsDone { get; set; }
}