aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/Data/ICal/RFC7986.pm
blob: 01f9d354e859586942ffeefe230d3c727fe3c3f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package Data::ICal::RFC7986;

use parent 'Data::ICal';

sub optional_unique_properties {
    qw( calscale method
		uid last-modified url refresh-interval source color
	);
}

# name/description are only repeatable to provide
# translations with language param
sub optional_repeatable_properties {
	qw( name description categories image );
}

1;