Files
AdamuSw/src/Dapr/ServerClients/FriendResponseArguments.cs
2026-07-14 19:00:35 +03:00

10 lines
394 B
C#

// <copyright file="FriendResponseArguments.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.ServerClients;
/// <summary>
/// The arguments for a friend response.
/// </summary>
public record FriendResponseArguments(string CharacterName, string FriendName, bool Accepted);