using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Construction.Components { /// /// Used for construction graphs in building computers. /// [RegisterComponent] public sealed class ComputerBoardComponent : Component { [ViewVariables] [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? Prototype { get; private set; } } }