Files
tbd-station-14/Content.Shared/Prototypes/DatasetPrototype.cs
2021-05-04 15:37:16 +02:00

19 lines
512 B
C#

#nullable enable
using System.Collections.Generic;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Shared.Prototypes
{
[Prototype("dataset")]
public class DatasetPrototype : IPrototype
{
[ViewVariables]
[DataField("id", required: true)]
public string ID { get; } = default!;
[DataField("values")] public IReadOnlyList<string> Values { get; } = new List<string>();
}
}