15 lines
245 B
C#
15 lines
245 B
C#
namespace DxBlazorApplication1
|
|
{
|
|
public class TodoItem
|
|
{
|
|
public TodoItem(string text)
|
|
{
|
|
Text = text;
|
|
}
|
|
|
|
public string Text { get; set; }
|
|
|
|
public bool Completed { get; set; }
|
|
}
|
|
}
|