You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
61 lines
1.1 KiB
C#
61 lines
1.1 KiB
C#
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
using Newtonsoft.Json.Linq;
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Web;
|
||
|
|
|
||
|
|
namespace MetadataServer.Models
|
||
|
|
{
|
||
|
|
public class IssueWatcherData
|
||
|
|
{
|
||
|
|
public string UserName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public class IssueBuildData
|
||
|
|
{
|
||
|
|
public long Id;
|
||
|
|
public string Stream;
|
||
|
|
public int Change;
|
||
|
|
public string JobName;
|
||
|
|
public string JobUrl;
|
||
|
|
public string JobStepName;
|
||
|
|
public string JobStepUrl;
|
||
|
|
public string ErrorUrl;
|
||
|
|
public int Outcome;
|
||
|
|
}
|
||
|
|
|
||
|
|
public class IssueBuildUpdateData
|
||
|
|
{
|
||
|
|
public int Outcome;
|
||
|
|
}
|
||
|
|
|
||
|
|
public class IssueData
|
||
|
|
{
|
||
|
|
public long Id;
|
||
|
|
public DateTime CreatedAt;
|
||
|
|
public DateTime RetrievedAt;
|
||
|
|
public string Project;
|
||
|
|
public string Summary;
|
||
|
|
public string Details;
|
||
|
|
public string Owner;
|
||
|
|
public string NominatedBy;
|
||
|
|
public DateTime? AcknowledgedAt;
|
||
|
|
public int FixChange;
|
||
|
|
public DateTime? ResolvedAt;
|
||
|
|
public bool bNotify;
|
||
|
|
}
|
||
|
|
|
||
|
|
public class IssueUpdateData
|
||
|
|
{
|
||
|
|
public string Summary;
|
||
|
|
public string Details;
|
||
|
|
public string Owner;
|
||
|
|
public string NominatedBy;
|
||
|
|
public bool? Acknowledged;
|
||
|
|
public int? FixChange;
|
||
|
|
public bool? Resolved;
|
||
|
|
}
|
||
|
|
}
|