You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#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]
25 lines
495 B
C#
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;
|
|
}
|
|
} |