22 lines
491 B
C#
22 lines
491 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.json.WIQL;
|
|
|
|
public class Field
|
|
{
|
|
[JsonConstructor]
|
|
public Field(
|
|
string referenceName,
|
|
string name,
|
|
string url
|
|
)
|
|
{
|
|
ReferenceName = referenceName;
|
|
Name = name;
|
|
Url = url;
|
|
}
|
|
|
|
public string ReferenceName { get; set; } // { init; get; }
|
|
public string Name { get; set; } // { init; get; }
|
|
public string Url { get; set; } // { init; get; }
|
|
} |