server-master/srcs/WingsAPI.Packets/ClientPackets/FauthPacket.cs
2026-02-10 18:21:30 +01:00

25 lines
No EOL
485 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums.Families;
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("fauth")]
public class FAuthPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public FamilyAuthority MemberType { get; set; }
[PacketIndex(1)]
public byte AuthorityId { get; set; }
[PacketIndex(2)]
public byte Value { get; set; }
#endregion
}
}