13 lines
273 B
C#
13 lines
273 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.json.WorkItems;
|
|
|
|
public class WorkItemComments
|
|
{
|
|
[JsonConstructor]
|
|
public WorkItemComments(
|
|
string href
|
|
) => Href = href;
|
|
|
|
public string Href { get; set; } // { init; get; }
|
|
} |