blazor project for cs

This commit is contained in:
Norm Rasmussen
2022-06-13 08:50:32 -04:00
parent 6b46bc3f67
commit 2287bf6dac
949 changed files with 3335 additions and 24761 deletions

14
TaskTree/Accounts.cs Normal file
View File

@ -0,0 +1,14 @@
public class Accounts
{
public string? AccountName { get; set; }
public bool RecentContact { get; set; }
public IEnumerable<Accounts> Tasks { get; set; }
public List<Accounts> account = new();
}
public class Tasks
{
public string? TaskName { get; set; } = "Example";
public bool IsComplete { get; set; } = false;
public List<Tasks> task = new();
}