summaryrefslogtreecommitdiffstats
path: root/src/pagination.rs
blob: 51ea111bb905d283c4fd3cb40b3132b9505b0c64 (plain)
1
2
3
4
5
6
7
use serde::Deserialize;

#[derive(Deserialize)]
pub struct Pagination {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub page: Option<i64>,
}