forked from Study/Blazor
11 lines
263 B
C#
11 lines
263 B
C#
namespace BlazorApp;
|
|
|
|
public class TodoItem
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Title { get; set; }
|
|
public bool IsDone { get; set; }
|
|
public string InputDate { get; set; } = String.Empty;
|
|
public string? SuccessDate { get; set; }
|
|
|
|
} |