// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tools.DotNETCommon.Perforce
{
///
/// Generic class for parsing "info" responses from Perforce
///
public class PerforceInfo
{
///
/// The severity level
///
[PerforceTag("level")]
public int Level;
///
/// Message data
///
[PerforceTag("data")]
public string Data;
///
/// Formats this error for display in the debugger
///
/// String representation of this object
public override string ToString()
{
return Data;
}
}
}