25 lines
No EOL
505 B
C#
25 lines
No EOL
505 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using WingsEmu.Packets.Enums.Families;
|
|
|
|
namespace WingsEmu.Packets.ClientPackets
|
|
{
|
|
[PacketHeader("fmg")]
|
|
public class FamilyManagementPacket : ClientPacket
|
|
{
|
|
#region Properties
|
|
|
|
[PacketIndex(0)]
|
|
public FamilyAuthority FamilyAuthorityType { get; set; }
|
|
|
|
[PacketIndex(1)]
|
|
public long TargetId { get; set; }
|
|
|
|
[PacketIndex(2)]
|
|
public byte? Confirmed { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |