Add chapter 12 blazor project

This commit is contained in:
Alvin Ashcraft
2023-08-27 14:35:28 -04:00
parent 7ba92b1abd
commit 48f651f395
34 changed files with 1411 additions and 0 deletions
@@ -0,0 +1,8 @@
namespace BlazorTasks
{
public class TaskItem
{
public string? Name { get; set; }
public bool IsComplete { get; set; }
}
}