11 lines
287 B
C#
11 lines
287 B
C#
namespace Content.Server.Atmos.Piping.Unary.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class GasPortableComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("port")]
|
|
public string PortName { get; set; } = "port";
|
|
}
|
|
}
|