Common/TreeView/DTO/
mod.rs

1//! # TreeView DTO Module
2//!
3//! Aggregates and re-exports all Data Transfer Objects (DTOs) related to the
4//! TreeView service.
5
6#![allow(non_snake_case, non_camel_case_types)]
7
8pub mod TreeItemDTO;
9
10pub mod TreeViewOptionsDTO;