Ready to start loading backlog

This commit is contained in:
2024-08-14 13:51:57 -07:00
parent 29bec0cb9a
commit 754cc1ee2b
21 changed files with 1280 additions and 12 deletions

View File

@ -0,0 +1,13 @@
using System.Text.Json.Serialization;
namespace File_Folder_Helper.Day.Q32024.WorkItems;
public class Avatar
{
[JsonConstructor]
public Avatar(
string href
) => Href = href;
public string Href { get; } // { init; get; }
}