Files
file-folder-helper/ADO2024/PI3/WorkItems/Avatar.cs
Mike Phares b6d8d4c52f Moved to ADO2024 PI#
Ran SortCodeMethods
2024-10-11 09:15:32 -07:00

15 lines
270 B
C#

#if WorkItems
using System.Text.Json.Serialization;
namespace File_Folder_Helper.ADO2024.PI3.WorkItems;
public class Avatar
{
[JsonConstructor]
public Avatar(
string href
) => Href = href;
public string Href { get; } // { init; get; }
}
#endif