2022-08-04 13:13:42 +00:00

21 lines
220 B
Rust

//!
//!
///
#[derive(Debug, Clone)]
pub enum Sort {
///
ASC(String),
///
DESC(String),
}
///
#[derive(Debug, Clone)]
pub struct Pagination {
///
pub page: Option<u32>,
///
pub page_size: Option<u32>,
}