2023-09-11 09:42:41 +10:00
|
|
|
using Robust.Shared.Serialization;
|
2023-07-27 22:25:55 +02:00
|
|
|
|
2023-07-26 21:49:38 +03:00
|
|
|
namespace Content.Shared.MassMedia.Systems;
|
|
|
|
|
|
2023-09-11 09:42:41 +10:00
|
|
|
[Serializable, NetSerializable]
|
2023-07-26 21:49:38 +03:00
|
|
|
public struct NewsArticle
|
|
|
|
|
{
|
|
|
|
|
public string Name;
|
|
|
|
|
public string Content;
|
2023-07-27 22:25:55 +02:00
|
|
|
public string? Author;
|
2023-09-11 09:42:41 +10:00
|
|
|
public ICollection<(NetEntity, uint)>? AuthorStationRecordKeyIds;
|
2023-07-26 21:49:38 +03:00
|
|
|
public TimeSpan ShareTime;
|
|
|
|
|
}
|