Files
.vscode
Adaptation
.config
.vscode
Eaf
FileHandlers
APC
Archive
ConvertExcelToJson
CopyToPaths
DownloadExcelFile
DownloadWorkItems
Dummy
IQSSi
Kanban
Markdown
MoveMatchingFiles
OpenInsight
OpenInsightMetrologyViewer
OpenInsightMetrologyViewerAttachments
Processed
SPaCe
json
StaticSite
WIQL
Column.cs
Field.cs
Root.cs
SortColumn.cs
WorkItem.cs
WorkItems
FileRead.cs
ProcessData.cs
CellInstanceConnectionName.cs
Ifx
Infineon
PeerGroup
Shared
_Tests
.editorconfig
MESAFIBACKLOG-Development.yml
MESAFIBACKLOG.Tests.csproj
MESAFIBACKLOG.yml
appsettings.Development.json
appsettings.json
package.json
FileHandlers
Properties
Shared
.gitignore
MESAFIBACKLOG.csproj
README.md
mesa-fi-backlog/Adaptation/FileHandlers/json/WIQL/Field.cs
2023-01-24 08:45:13 -07:00

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; }
}