use super::user_interface_repository::UserInterfaceTable;
use super::user_interface_repository::UserInterfaceTableRO;
use crate::entities::UserInterface;
crate::impl_leaf_entity_table!(
entity: UserInterface,
entity_name: "user_interface",
store_field: user_interfaces,
table_trait: UserInterfaceTable,
table_ro_trait: UserInterfaceTableRO,
table_struct: UserInterfaceHashMapTable,
table_ro_struct: UserInterfaceHashMapTableRO,
backward_junctions: [
(jn_user_interface_from_workspace_user_interface),
],
);