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