Files
PulsarK-main/Pulsar.Common/Messages/Administration/TCPConnections/DoCloseConnection.cs
T

22 lines
471 B
C#
Raw Normal View History

2026-08-27 10:57:58 -06:00
using MessagePack;
using Pulsar.Common.Messages.Other;
namespace Pulsar.Common.Messages.Administration.TCPConnections
{
[MessagePackObject]
public class DoCloseConnection : IMessage
{
[Key(1)]
public string LocalAddress { get; set; }
[Key(2)]
public ushort LocalPort { get; set; }
[Key(3)]
public string RemoteAddress { get; set; }
[Key(4)]
public ushort RemotePort { get; set; }
}
}