// 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
{
///
/// Stores information about a change and its merge history
///
class ChangeInfo
{
public ChangesRecord Record;
public List SourceChanges = new List();
}
}