16 lines
410 B
C#
16 lines
410 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.Advertisements
|
|
{
|
|
[Serializable, Prototype("advertisementsPack")]
|
|
public sealed class AdvertisementsPackPrototype : IPrototype
|
|
{
|
|
[ViewVariables]
|
|
[IdDataFieldAttribute]
|
|
public string ID { get; } = default!;
|
|
|
|
[DataField("advertisements")]
|
|
public List<string> Advertisements { get; } = new();
|
|
}
|
|
}
|