Files
UnrealEngineUWP/Engine/Source/Programs/UnrealGameSync/MetadataTool/BuildHealth/ChangeInfo.cs
Max Chen 4561801a81 Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor) @7119039
#rb none

[CL 7120528 by Max Chen in Dev-Editor branch]
2019-06-21 01:21:43 -04:00

22 lines
486 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tools.DotNETCommon.Perforce;
namespace MetadataTool
{
/// <summary>
/// Stores information about a change and its merge history
/// </summary>
class ChangeInfo
{
public ChangesRecord Record;
public List<int> SourceChanges = new List<int>();
public DescribeRecord CachedDescribeRecord;
}
}