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

12 lines
No EOL
261 B
C#

namespace WingsEmu.Packets
{
/// <summary>
/// Packets that are sent by client
/// </summary>
public interface IClientPacket : IPacket
{
string OriginalContent { get; set; }
string OriginalHeader { get; set; }
}
}