continuity/Server/Packets/Outgoing/ServerChannelData.cs

9 lines
200 B
C#
Raw Normal View History

2023-10-12 07:15:34 +00:00
namespace Server.Packets.Outgoing;
public struct ServerChannelData
{
public ushort ServerId { get; set; }
public ushort ChannelId { get; set; }
public byte LoadPercentage { get; set; }
2023-08-11 09:31:30 +00:00
}