Files
crystall-punk-14/Content.Shared/DeviceLinking/Events/PortDisconnectedEvent.cs

13 lines
259 B
C#
Raw Permalink Normal View History

namespace Content.Shared.DeviceLinking.Events
{
public sealed class PortDisconnectedEvent : EntityEventArgs
{
public readonly string Port;
public PortDisconnectedEvent(string port)
{
Port = port;
}
}
}