continuity/Server/Packets/Outgoing/ServerChannelData.cs

8 lines
203 B
C#

namespace Server.Packets.Outgoing;
public struct ServerChannelData
{
public ushort ServerId { get; set; }
public ushort ChannelId { get; set; }
public byte LoadPercentage { get; set; }
}