2022-05-13 00:59:03 -07:00
|
|
|
|
using Robust.Shared.Prototypes;
|
2021-04-21 12:00:14 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Advertisements
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable, Prototype("advertisementsPack")]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class AdvertisementsPackPrototype : IPrototype
|
2021-04-21 12:00:14 +02:00
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
2022-04-03 02:01:22 +02:00
|
|
|
|
[IdDataFieldAttribute]
|
2021-04-21 12:00:14 +02:00
|
|
|
|
public string ID { get; } = default!;
|
|
|
|
|
|
|
2021-05-04 15:37:16 +02:00
|
|
|
|
[DataField("advertisements")]
|
2021-04-21 12:00:14 +02:00
|
|
|
|
public List<string> Advertisements { get; } = new();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|