package Podius::Component::Media;

use base 'Podius::Component::Publishable';

use Podius::Property::Scalar;
use Podius::Property::BigScalar;
use Podius::Property::MediaType;
use Podius::Property::Boolean;

sub get_own_property_types ($) {
	return [
		[ type   => 'MediaType' ],
		[ path   => 'Scalar' ],
		[ alt    => 'Scalar' ],
		[ link   => 'BigScalar' ],
		[ height => 'Scalar' ],
		[ width  => 'Scalar' ],
		[ active => 'Boolean' ],
	];
}

1;