Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

2 tygodni temu
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;