Files
tbd-station-14/Content.Server/Labels/Label/Components/LabelComponent.cs
2022-05-13 17:59:03 +10:00

13 lines
315 B
C#

namespace Content.Server.Labels.Components
{
[RegisterComponent]
public sealed class LabelComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("currentLabel")]
public string? CurrentLabel { get; set; }
public string? OriginalName { get; set; }
}
}