// Copyright Epic Games, Inc. All Rights Reserved. namespace EpicGames.Perforce { /// /// Generic class for parsing "info" responses from Perforce /// public class PerforceInfo { /// /// Message data /// [PerforceTag("data")] public string Data { get; set; } /// /// Private constructor for serialization /// private PerforceInfo() { Data = null!; } /// /// Formats this error for display in the debugger /// /// String representation of this object public override string? ToString() { return Data; } } }