//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Interfaces;
///
/// An entry of the alliance guild list.
///
/// The unique identifier of the guild.
/// The name of the guild.
/// The number of members in the guild.
/// The logo of the guild.
public record AllianceGuildEntry(uint Id, string GuildName, int MemberCount, Memory Logo);