using Robust.Shared.Serialization; namespace Content.Shared.Station; [NetSerializable, Serializable] public sealed class StationsUpdatedEvent : EntityEventArgs { public readonly HashSet Stations; public StationsUpdatedEvent(HashSet stations) { Stations = stations; } }