Files
wwdpublic/Content.Shared/MassMedia/Components/StationNewsComponent.cs
Julian Giebel c9f4910cb9 News UI overhaul and PDA notifications (#19610)
(cherry picked from commit 0752acdc2ca2db43581e2c0d95a5d96041247bc9)
2024-03-07 01:02:24 +01:00

11 lines
240 B
C#

using Content.Shared.MassMedia.Systems;
namespace Content.Shared.MassMedia.Components;
[RegisterComponent]
public sealed partial class StationNewsComponent : Component
{
[DataField]
public List<NewsArticle> Articles = new();
}