using Content.Server._NF.Atmos.Systems;
namespace Content.Server._NF.Atmos.Components;
[RegisterComponent, Access(typeof(DockablePipeSystem))]
public sealed partial class DockablePipeComponent : Component
{
///
/// The name of the node that is available to dock.
///
[DataField]
public string DockNodeName;
///
/// The name of the internal node
///
[DataField]
public string InternalNodeName;
}