DatasetPrototype.cs 379 B

1234567891011121314
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Dataset
  3. {
  4. [Prototype]
  5. public sealed partial class DatasetPrototype : IPrototype
  6. {
  7. [ViewVariables]
  8. [IdDataField]
  9. public string ID { get; private set; } = default!;
  10. [DataField("values")] public IReadOnlyList<string> Values { get; private set; } = new List<string>();
  11. }
  12. }