//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Interfaces;
///
/// The guild member status of a guild member.
///
public class GuildMemberStatus
{
///
/// Initializes a new instance of the class.
///
/// The guild identifier.
/// The position.
public GuildMemberStatus(uint guildId, GuildPosition position)
{
this.GuildId = guildId;
this.Position = position;
}
///
/// Gets the guild identifier.
///
///
/// The guild identifier.
///
public uint GuildId { get; }
///
/// Gets the position.
///
///
/// The position.
///
public GuildPosition Position { get; }
}