// Copyright Epic Games, Inc. All Rights Reserved. using System.Runtime.InteropServices; namespace Epic.OnlineServices { [StructLayout(LayoutKind.Sequential)] internal sealed class BoxedData { public object Data { get; private set; } public BoxedData() { } public BoxedData(object data) { Data = data; } } }