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