jf-roku/components/data/collection.xml
Nick Bisby 498440f2c5
Make ItemGrids more abstract (#49)
* Make the movie grid a bit more abstract

* Make the tvshow/collection grids more abstract
2019-07-09 08:57:59 -05:00

15 lines
582 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<component name="CollectionData" extends="ContentNode">
<interface>
<field id="title" type="string" />
<field id="image" type="node" onChange="setPoster" />
<field id="posterUrl" type="string" />
<field id="collectionID" type="string" />
<field id="description" type="string" />
<field id="favorite" type="boolean" />
<field id="watched" type="boolean" />
<field id="json" type="associativearray" onChange="setFields" />
</interface>
<script type="text/brightscript" uri="collection.brs" />
</component>