fish-station/Content.Shared/_Sunrise/CopyMachine/PoolDocTemplate.cs
2025-08-16 06:20:10 +03:00

13 lines
336 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared._Sunrise.CopyMachine;
[Prototype]
public sealed partial class DocTemplatePoolPrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = default!;
[DataField(required: true)]
public List<ProtoId<DocTemplatePrototype>> Templates = new ();
}