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