Files
tbd-station-14/Content.Shared/MassMedia/Systems/SharedNewsSystem.cs
PrPleGoo 852f041581 Add auth to the mass-media console (#18345)
* process my own comments

* add fields and handling

* little cleanups

* localization

* u

* whoops
2023-07-27 14:25:55 -06:00

14 lines
306 B
C#

using Content.Shared.StationRecords;
namespace Content.Shared.MassMedia.Systems;
[Serializable]
public struct NewsArticle
{
public string Name;
public string Content;
public string? Author;
public ICollection<StationRecordKey>? AuthorStationRecordKeyIds;
public TimeSpan ShareTime;
}