您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011
  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;