Files
.vscode
Adaptation
.config
.vscode
Eaf
FileHandlers
APC
Archive
ConvertExcelToJson
CopyToPaths
DownloadExcelFile
Dummy
IQSSi
Kanban
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
mesa-fi-backlog/Adaptation/FileHandlers/json/WorkItems/SystemCreatedBy.cs
2023-04-22 21:42:57 -07:00

47 lines
1.0 KiB
C#

using System.Text.Json.Serialization;
namespace Adaptation.FileHandlers.json.WorkItems;
public class SystemCreatedBy
{
[JsonConstructor]
public SystemCreatedBy(
string displayName,
string url,
Links links,
string id,
string uniqueName,
string imageUrl,
string descriptor
)
{
DisplayName = displayName;
Url = url;
Links = links;
Id = id;
UniqueName = uniqueName;
ImageUrl = imageUrl;
Descriptor = descriptor;
}
[JsonPropertyName("displayName")]
public string DisplayName { get; }
[JsonPropertyName("url")]
public string Url { get; }
[JsonPropertyName("_links")]
public Links Links { get; }
[JsonPropertyName("id")]
public string Id { get; }
[JsonPropertyName("uniqueName")]
public string UniqueName { get; }
[JsonPropertyName("imageUrl")]
public string ImageUrl { get; }
[JsonPropertyName("descriptor")]
public string Descriptor { get; }
}