using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Inventory; public abstract class InventoryComponent : Component { [DataField("templateId", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string TemplateId { get; } = "human"; }