//
//  FdPacket.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.
using NosSmooth.PacketSerializer.Abstractions.Attributes;
namespace NosSmooth.Packets.Server.Character;
/// 
/// Reputation and dignity packet.
/// 
/// The character's reputation.
/// The character's reputation icon.
/// The character's dignity.
/// The character's dignity icon.
[PacketHeader("fd", PacketSource.Server)]
[GenerateSerializer(true)]
public record FdPacket
(
    [PacketIndex(0)]
    long Reputation,
    [PacketIndex(1)]
    short ReputationIcon,
    [PacketIndex(2)]
    int Dignity,
    [PacketIndex(3)]
    short DignityIcon
) : IPacket;