* process my own comments * add fields and handling * little cleanups * localization * u * whoops
14 lines
306 B
C#
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;
|
|
}
|