2022-08-26 15:40:05 -07:00

13 lines
227 B
C#

using System.Text.Json.Serialization;
namespace Mesa_Backlog.Library.WorkItems;
public class Avatar
{
[JsonConstructor]
public Avatar(
string href
) => Href = href;
public string Href { init; get; }
}