2023-07-27 22:25:55 +02:00
|
|
|
using Content.Shared.StationRecords;
|
|
|
|
|
|
2023-07-26 21:49:38 +03:00
|
|
|
namespace Content.Shared.MassMedia.Systems;
|
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public struct NewsArticle
|
|
|
|
|
{
|
|
|
|
|
public string Name;
|
|
|
|
|
public string Content;
|
2023-07-27 22:25:55 +02:00
|
|
|
public string? Author;
|
|
|
|
|
public ICollection<StationRecordKey>? AuthorStationRecordKeyIds;
|
2023-07-26 21:49:38 +03:00
|
|
|
public TimeSpan ShareTime;
|
|
|
|
|
}
|