Editor/CoreAPI/ScenarioParameter.cs (8 lines of code) (raw):
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AmazonGameLift.Editor
{
public sealed class ScenarioParameter
{
public string ParameterKey { get; set; }
public string ParameterValue { get; set; }
}
}