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