Files
UnrealEngine/Engine/Source/Programs/UnrealGameSync/MetadataServer/Models/TelemetryErrorData.cs
2025-05-18 13:04:45 +08:00

25 lines
471 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MetadataServer.Models
{
public class TelemetryErrorData
{
public enum TelemetryErrorType
{
Crash,
}
public int Id;
public TelemetryErrorType Type;
public string Text;
public string UserName;
public string Project;
public DateTime Timestamp;
public string Version;
public string IpAddress;
}
}