mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
13 lines
256 B
C#
13 lines
256 B
C#
namespace Content.Server.MachineLinking.Events
|
|
{
|
|
public sealed class SignalReceivedEvent : EntityEventArgs
|
|
{
|
|
public readonly string Port;
|
|
|
|
public SignalReceivedEvent(string port)
|
|
{
|
|
Port = port;
|
|
}
|
|
}
|
|
}
|