reactive_graph_std_date_time_model/relation/
day_of_month.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!(DayOfMonthProperties, (DAY_OF_MONTH, "day_of_month", 0));
7
8relation_ty!(RELATION_TYPE_DAY_OF_MONTH, NAMESPACE_DATE_TIME, RELATION_TYPE_NAME_DAY_OF_MONTH, "day_of_month");
9
10relation_model!(
11    DayOfMonth,
12    get day_of_month u64
13);