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.
2b-rs/src/providers/ytdl/playlist_entry.rs

10 lines
185 B
Rust

use serde_derive::Deserialize;
#[derive(Deserialize, Clone, Debug)]
pub(crate) struct PlaylistEntry {
ie_key: String,
id: String,
pub url: String,
pub title: String,
}