Files
tbd-station-14/Content.Server/Labels/Label/Components/LabelComponent.cs
2022-02-16 18:23:23 +11:00

17 lines
438 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
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; }
}
}