namespace Content.Server.Power.Generator;
///
/// This is used for stuff that can directly be shoved into a generator.
///
[RegisterComponent, Access(typeof(GeneratorSystem))]
public sealed partial class ChemicalFuelGeneratorDirectSourceComponent : Component
{
///
/// The solution to pull fuel material from.
///
[DataField("solution", required: true), ViewVariables(VVAccess.ReadWrite)]
public string Solution = default!;
}