2022-05-17 21:05:31 -07:00
|
|
|
namespace Content.Shared.AlertLevel;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class AlertLevelDisplayComponent : Component
|
2022-05-17 21:05:31 -07:00
|
|
|
{
|
|
|
|
|
[DataField("alertVisuals")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public Dictionary<string, string> AlertVisuals = new();
|
2022-05-17 21:05:31 -07:00
|
|
|
}
|