You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb none #jira none #ROBOMERGE-OWNER: ryan.durand #ROBOMERGE-AUTHOR: ryan.durand #ROBOMERGE-SOURCE: CL 10869242 in //Fortnite/Release-12.00/... via CL 10869536 #ROBOMERGE-BOT: FORTNITE (Main -> Dev-EngineMerge) (v613-10869866) [CL 10870960 by Ryan Durand in Main branch]
39 lines
695 B
C#
39 lines
695 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace MetadataServer.Models
|
|
{
|
|
public class BuildData
|
|
{
|
|
public enum BuildDataResult
|
|
{
|
|
Starting,
|
|
Failure,
|
|
Warning,
|
|
Success,
|
|
Skipped,
|
|
}
|
|
|
|
public long Id;
|
|
public int ChangeNumber;
|
|
public string BuildType;
|
|
public BuildDataResult Result;
|
|
public string Url;
|
|
public string Project;
|
|
public string ArchivePath;
|
|
|
|
public bool IsSuccess
|
|
{
|
|
get { return Result == BuildDataResult.Success || Result == BuildDataResult.Warning; }
|
|
}
|
|
|
|
public bool IsFailure
|
|
{
|
|
get { return Result == BuildDataResult.Failure; }
|
|
}
|
|
}
|
|
} |