src/Libs/Common/Redis/CommandParameters/SetScenarioParameters.cs (9 lines of code) (raw):
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
namespace Azure.SignalRBench.Common
{
public class SetScenarioParameters
{
public ScenarioDefinition[] Scenarios { get; set; } = Array.Empty<ScenarioDefinition>();
}
}