Common/DTO/
mod.rs

1//! # Global DTO Module
2//!
3//! A top-level module that re-exports all Data Transfer Objects (DTOs) from the
4//! various service modules for convenient access across the application.
5//! It also contains DTOs that are shared across multiple services.
6
7#![allow(non_snake_case, non_camel_case_types)]
8
9pub mod WorkSpaceEditDTO;