22 lines
471 B
C#
22 lines
471 B
C#
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; }
|
|
}
|
|
}
|