namespace Content.Server.Labels.Components { /// /// Makes entities have a label in their name. Labels are normally given by /// [RegisterComponent] public sealed partial class LabelComponent : Component { /// /// The actual text in the label /// [ViewVariables(VVAccess.ReadWrite)] [DataField("currentLabel")] public string? CurrentLabel { get; set; } [DataField("originalName")] public string? OriginalName { get; set; } } }