mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
8 lines
150 B
C#
8 lines
150 B
C#
namespace BlazorTasks
|
|
{
|
|
public class TaskItem
|
|
{
|
|
public string? Name { get; set; }
|
|
public bool IsComplete { get; set; }
|
|
}
|
|
} |