10 lines
394 B
C#
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); |