make inner type pub so it can be read and created easily in other crates (#4397)

this is for use in SSR pagination in Lemmy-UI-Leptos
This commit is contained in:
jim-taylor-business 2024-01-24 14:03:31 +00:00 committed by GitHub
parent 20fd4b5869
commit f43d2eca70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -101,7 +101,7 @@ pub struct PostReportView {
#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "full", derive(ts_rs::TS))]
#[cfg_attr(feature = "full", ts(export))]
pub struct PaginationCursor(pub(crate) String);
pub struct PaginationCursor(pub String);
#[skip_serializing_none]
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]