13 lines
248 B
C#
13 lines
248 B
C#
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; }
|
|
} |