Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12 строки
385 B

  1. //! Data transfer objects (DTOs) and domain models.
  2. //!
  3. //! Convention:
  4. //! - `*Request` — inbound JSON body (what the caller sends).
  5. //! - `*Response` — outbound JSON body (what we return).
  6. //! - Domain structs without a suffix hold business data (DB row shape, etc.).
  7. //!
  8. //! Keep request/response types thin — no business logic here.
  9. pub mod item;
  10. pub mod pagination;