//
// Dialog.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using OneOf;
namespace NosSmooth.Game.Data.Dialogs;
/// <summary>
/// Represents dialog sent by the server
/// </summary>
/// <param name="AcceptCommand"></param>
/// <param name="Message"></param>
/// <param name="Parameters"></param>
public record Dialog
(
string AcceptCommand,
// OneOf<Game18NConstString, string> Message,
IReadOnlyList<string> Parameters
);