Runtime/Core/Latency/Models/PingResult.cs (7 lines of code) (raw):
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AmazonGameLiftPlugin.Core.Latency.Models
{
public class PingResult
{
public long RoundtripTime { get; set; }
}
}