20 lines
558 B
C#
20 lines
558 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Server.Advertisements
|
|
{
|
|
[Serializable, Prototype("advertisementsPack")]
|
|
public sealed class AdvertisementsPackPrototype : IPrototype
|
|
{
|
|
[ViewVariables]
|
|
[DataField("id", required: true)]
|
|
public string ID { get; } = default!;
|
|
|
|
[DataField("advertisements")]
|
|
public List<string> Advertisements { get; } = new();
|
|
}
|
|
}
|