21 lines
220 B
Rust
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>,
|
||
|
}
|