baseline: OpenMU upstream b5a0961 (fresh source)

This commit is contained in:
Acentech Dev
2026-07-14 19:00:35 +03:00
parent 450402e47d
commit 36fc125d5c
11968 changed files with 748705 additions and 0 deletions

36
src/Interfaces/Friend.cs Normal file
View File

@@ -0,0 +1,36 @@
// <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; }
}