namespace Content.Server.Chemistry.Components.SolutionManager
{
///
/// Denotes the solution that can removed be with syringes.
///
[RegisterComponent]
public sealed partial class DrawableSolutionComponent : Component
{
///
/// Solution name that can be removed with syringes.
///
[ViewVariables(VVAccess.ReadWrite)]
[DataField("solution")]
public string Solution { get; set; } = "default";
}
}