14 lines
254 B
C
14 lines
254 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
struct FBackgroundHttpRequestMetricsExtended
|
|
{
|
|
int32 TotalBytesDownloaded;
|
|
float DownloadDuration;
|
|
FDateTime FetchStartTimeUTC;
|
|
FDateTime FetchEndTimeUTC;
|
|
};
|