Files
tbd-station-14/Content.Server/Advertisements/AdvertisementsPackPrototype.cs
2023-11-01 19:56:23 -07:00

16 lines
435 B
C#

using Robust.Shared.Prototypes;
namespace Content.Server.Advertisements
{
[Serializable, Prototype("advertisementsPack")]
public sealed partial class AdvertisementsPackPrototype : IPrototype
{
[ViewVariables]
[IdDataField]
public string ID { get; private set; } = default!;
[DataField("advertisements")]
public List<string> Advertisements { get; private set; } = new();
}
}