How do I get the properties from a slot item within an auto slot?

I have a template that uses an auto slot to list a large list of snippet “Public Comment” content items from a folder. Each of these public comment content items has several slots where files can be attached to the public comment content item. I want to be able to get the properties from each public comment content item as I loop through the auto slot.

How do I reference the items in the slots in the public comment content items in SlotAuto?

#set($slotname = “SlotAuto”)
#set($myparams = “folderpath=” + $user.psoFolders.getParentFolderPath($sys.item.guid) + “/%”)

#set($completeparams = $rx.asmhelper.combine($sys.params, $myparams))
#set($completeparams.query = ‘SELECT rx:name FROM rx:Comment WHERE jcr:path like “:folderpath”’)
#set($completeparams.template = “PublicComment”)
#set($PCList = $user.psoSlotTools.getSlotContents($sys.assemblyItem, $slotname, $completeparams))

#foreach($PC in $PCList)
#set($date = $PC.getNode().getProperty(“datereceived”).String)
#set($name = $PC.getNode().getProperty(“name”).String)

HOW DO I GET THE PROPERTIES FROM THE CONTENT ITEM IN THE SLOT ON EACH LOOP?
##set slot contents from Content Item in Slot
##set($ChildSlot = $user.psoSlotTools.getSlotContents($sys.assemblyItem, “ChildSlot”,$params))

#if($ChildSlot.size() > 0)
	#set($FRN = $tools.list.get($ChildSlot,0))
	#set($FRNID = $FRN.getNode().getProperty("sys_contentid").String)
#end

#end