reactive_graph_std_date_time_model/relation/month_of_year.rs
1use crate::NAMESPACE_DATE_TIME;
2use reactive_graph_graph::properties;
3use reactive_graph_graph::relation_ty;
4use reactive_graph_reactive_model_api::relation_model;
5
6properties!(MonthOfYearProperties, (MONTH_OF_YEAR, "month_of_year", 0));
7
8relation_ty!(RELATION_TYPE_MONTH_OF_YEAR, NAMESPACE_DATE_TIME, RELATION_TYPE_NAME_MONTH_OF_YEAR, "month_of_year");
9
10relation_model!(
11 MonthOfYear,
12 get month_of_year u64
13);