Files
OldThink/Content.Server/Chemistry/Components/SolutionManager/DrawableSolutionComponent.cs

17 lines
513 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
namespace Content.Server.Chemistry.Components.SolutionManager
{
/// <summary>
/// Denotes the solution that can removed be with syringes.
/// </summary>
[RegisterComponent]
public sealed class DrawableSolutionComponent : Component
{
/// <summary>
/// Solution name that can be removed with syringes.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("solution")]
public string Solution { get; set; } = "default";
}
}