using Robust.Shared.Serialization; namespace Content.Shared.Alert; [Serializable, NetSerializable] public sealed class AlertsComponentState : ComponentState { public Dictionary Alerts; public AlertsComponentState(Dictionary alerts) { Alerts = alerts; } }