Files
tbd-station-14/Content.Server/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs
2022-05-13 17:59:03 +10:00

11 lines
302 B
C#

namespace Content.Server.Chemistry.Components.SolutionManager
{
[RegisterComponent]
public sealed class ExaminableSolutionComponent: Component
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("solution")]
public string Solution { get; set; } = "default";
}
}