namespace Content.Server._CP14.Farming.Components; /// /// a component that provides a link to a liquid storage that can be used by the plant /// [RegisterComponent, Access(typeof(CP14FarmingSystem))] public sealed partial class CP14SoilComponent : Component { [DataField(required: true)] public string Solution = string.Empty; public EntityUid? PlantUid; }