using Content.Shared.Construction.Components; using Robust.Shared.Containers; using Robust.Shared.Prototypes; namespace Content.Server.Construction.Components; [RegisterComponent] public sealed partial class MachineComponent : Component { [DataField] public EntProtoId? Board { get; private set; } [ViewVariables] public Container BoardContainer = default!; [ViewVariables] public Container PartContainer = default!; }