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

16 lines
No EOL
438 B
C#

using System.Reflection;
namespace WingsEmu.Packets
{
internal class PacketSerializationInformation
{
public PacketSerializationInformation(string header, (PacketIndexAttribute, PropertyInfo)[] propertyInfos)
{
Header = header;
Properties = propertyInfos;
}
public string Header { get; }
public (PacketIndexAttribute, PropertyInfo)[] Properties { get; }
}
}