13 lines
260 B
C#
13 lines
260 B
C#
namespace Content.Server.MachineLinking.Events
|
|
{
|
|
public sealed class PortDisconnectedEvent : EntityEventArgs
|
|
{
|
|
public readonly string Port;
|
|
|
|
public PortDisconnectedEvent(string port)
|
|
{
|
|
Port = port;
|
|
}
|
|
}
|
|
}
|