using Content.Server.Botany.Systems;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Botany.Components;
[RegisterComponent]
[Friend(typeof(BotanySystem))]
public sealed class ProduceComponent : Component
{
[DataField("targetSolution")] public string SolutionName { get; set; } = "food";
///
/// Seed data used to create a when this produce has its seeds extracted.
///
[DataField("seed")]
public SeedData? Seed;
///
/// Seed data used to create a when this produce has its seeds extracted.
///
[DataField("seedId", customTypeSerializer: typeof(PrototypeIdSerializer))]
public readonly string? SeedId;
}