tmdb_api/common/
keyword.rs

1#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
2pub struct Keyword {
3    pub id: u64,
4    pub name: String,
5}