using Content.Shared.CartridgeLoader.Cartridges;
namespace Content.Shared.CartridgeLoader.Cartridges;
///
/// Component attached to a piece of paper to indicate that it was printed from NanoTask and can be inserted back into it
///
[RegisterComponent]
public sealed partial class NanoTaskPrintedComponent : Component
{
///
/// The task that this item holds
///
[DataField]
public NanoTaskItem? Task;
}