You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
320 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct ChapterData {
pub images: Vec<String>,
pub prev_chapter: Option<String>,
pub next_chapter: Option<String>,
pub title: Option<String>,
pub series_url: Option<String>,
pub cookies: Option<String>,
}