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")]
|
2023-11-01 19:56:23 -07:00
|
|
|
|
public sealed partial class AdvertisementsPackPrototype : IPrototype
|
2021-04-21 12:00:14 +02:00
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
2023-01-19 03:56:45 +01:00
|
|
|
|
[IdDataField]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public string ID { get; private set; } = default!;
|
2021-04-21 12:00:14 +02:00
|
|
|
|
|
2021-05-04 15:37:16 +02:00
|
|
|
|
[DataField("advertisements")]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public List<string> Advertisements { get; private set; } = new();
|
2024-01-08 20:34:47 -05:00
|
|
|
|
|
|
|
|
|
|
[DataField("thankyous")]
|
|
|
|
|
|
public List<string> ThankYous { get; private set; } = new();
|
2021-04-21 12:00:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|