1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Public OAuth wire-format types (pagination, etc.). //! //! Copyright (c) systemprompt.io — Business Source License 1.1. //! See <https://systemprompt.io> for licensing details. use serde::{Deserialize, Serialize}; #[derive(Copy, Clone, Debug, Serialize, Deserialize)] pub struct Pagination { pub page: u32, pub per_page: u32, pub total: u32, pub total_pages: u32, }