Files
OldThink/Content.Server/BarSign/BarSignComponent.cs

11 lines
236 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
namespace Content.Server.BarSign
2020-04-23 00:58:43 +02:00
{
[RegisterComponent]
public sealed class BarSignComponent : Component
2020-04-23 00:58:43 +02:00
{
[DataField("current")]
[ViewVariables(VVAccess.ReadOnly)]
public string? CurrentSign;
2020-04-23 00:58:43 +02:00
}
}