Common/StatusBar/DTO/
mod.rs

1// File: Common/Source/StatusBar/DTO/mod.rs
2// Role: Public module interface for StatusBar-related Data Transfer Objects
3// (DTOs). Responsibilities:
4//   - Aggregate and re-export all DTOs for the StatusBar service contract.
5
6//! # StatusBar DTO Module
7//!
8//! Aggregates and re-exports all Data Transfer Objects (DTOs) related to the
9//! StatusBar service.
10
11#![allow(non_snake_case, non_camel_case_types)]
12
13pub mod StatusBarEntryDTO;