using Content.Shared.Radio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; namespace Content.Server.Radio.Components; /// /// This component is required to receive radio message events. /// [RegisterComponent] public sealed class ActiveRadioComponent : Component { /// /// The channels that this radio is listening on. /// [DataField("channels", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] public HashSet Channels = new(); }