You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
34 lines
660 B
C#
34 lines
660 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace EpicGames.Perforce
|
|
{
|
|
/// <summary>
|
|
/// Generic class for parsing "info" responses from Perforce
|
|
/// </summary>
|
|
public class PerforceInfo
|
|
{
|
|
/// <summary>
|
|
/// Message data
|
|
/// </summary>
|
|
[PerforceTag("data")]
|
|
public string Data { get; set; }
|
|
|
|
/// <summary>
|
|
/// Private constructor for serialization
|
|
/// </summary>
|
|
private PerforceInfo()
|
|
{
|
|
Data = null!;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Formats this error for display in the debugger
|
|
/// </summary>
|
|
/// <returns>String representation of this object</returns>
|
|
public override string? ToString()
|
|
{
|
|
return Data;
|
|
}
|
|
}
|
|
}
|