Files
Gainsight/CS_Todo/TodoItem.cs
2022-06-09 22:22:29 -04:00

10 lines
183 B
C#

public class TodoItem
{
public string Title { get; set; }
public bool IsComplete { get; set; } = false;
public TodoItem(string title)
{
Title = title;
}
}