Files
AdamuSw/src/Interfaces/Friend.cs
2026-07-14 19:00:35 +03:00

36 lines
995 B
C#

// <copyright file="Friend.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.Interfaces;
/// <summary>
/// The friend class used by the <see cref="IFriendServer"/>.
/// </summary>
public class Friend
{
/// <summary>
/// Gets or sets the identifier.
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Gets or sets the id of the character.
/// </summary>
public Guid CharacterId { get; set; }
/// <summary>
/// Gets or sets the id of the friend character.
/// </summary>
public Guid FriendId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the friend request got accepted.
/// </summary>
public bool Accepted { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this request is open.
/// </summary>
public bool RequestOpen { get; set; }
}