13 lines
315 B
C#
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; }
|
|
}
|
|
}
|