13 lines
247 B
C#
13 lines
247 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Mesa_Backlog.Library.WorkItems;
|
|
|
|
public class WorkItemComments
|
|
{
|
|
[JsonConstructor]
|
|
public WorkItemComments(
|
|
string href
|
|
) => Href = href;
|
|
|
|
public string Href { init; get; }
|
|
} |