Files
UnrealEngineUWP/Engine/Source/Programs/UnrealGameSync/UnrealGameSyncMetadataServer/Models/TelemetryErrorData.cs
ben marsh 6a1d739db4 Copy UGS from Dev-Build (pt 2)
#rb none
#rnx

#ROBOMERGE-OWNER: jason.bestimt
#ROBOMERGE-AUTHOR: ben.marsh
#ROBOMERGE-SOURCE: CL 4732764 in //UE4/Main/...
#ROBOMERGE-BOT: DEVVR (Main -> Dev-VR)

[CL 4788599 by ben marsh in Dev-VR branch]
2019-01-23 16:41:38 -05:00

25 lines
495 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace UnrealGameSyncMetadataServer.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;
}
}