.vscode
Adaptation
.config
.kanbn
.vscode
Eaf
FileHandlers
APC
Archive
ConvertExcelToJson
DownloadExcelFile
Dummy
IQSSi
MoveMatchingFiles
OpenInsight
OpenInsightMetrologyViewer
OpenInsightMetrologyViewerAttachments
Processed
SPaCe
json
StaticSite
WIQL
WorkItems
Avatar.cs
CommentVersionRef.cs
Fields.cs
Html.cs
Links.cs
SystemAssignedTo.cs
SystemChangedBy.cs
SystemCreatedBy.cs
Value.cs
ValueWithReq.cs
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
13 lines
243 B
C#
13 lines
243 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.json.WorkItems;
|
|
|
|
public class Html
|
|
{
|
|
[JsonConstructor]
|
|
public Html(
|
|
string href
|
|
) => Href = href;
|
|
|
|
public string Href { get; } // { init; get; }
|
|
} |