Delta-v/Content.Shared/MassMedia/Systems/SharedNewsSystem.cs

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;
}