namespace FishNet.Managing.Statistic { public struct NetworkTrafficArgs { /// /// Number of bytes sent to the server. /// public readonly ulong ToServerBytes; /// /// Number of bytes sent by the server. /// public readonly ulong FromServerBytes; public NetworkTrafficArgs(ulong toServerBytes, ulong fromServerBytes) { ToServerBytes = toServerBytes; FromServerBytes = fromServerBytes; } } }