package Podius::Component::BillingInfo;

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

use Podius::Property::Scalar;

sub get_own_property_types ($) {
	return [
		[ card_type       => 'Scalar' ],
		[ card_number     => 'Scalar' ],
		[ expiration_date => 'Scalar' ],
		[ CVC             => 'Scalar' ],
	];
}

1;