15 lines
379 B
C#
15 lines
379 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Dataset
|
|
{
|
|
[Prototype]
|
|
public sealed partial class DatasetPrototype : IPrototype
|
|
{
|
|
[ViewVariables]
|
|
[IdDataField]
|
|
public string ID { get; private set; } = default!;
|
|
|
|
[DataField("values")] public IReadOnlyList<string> Values { get; private set; } = new List<string>();
|
|
}
|
|
}
|