spotify_cli/domain/
artist.rs1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, Serialize, Deserialize)]
5pub struct Artist {
6 pub id: String,
7 pub name: String,
8 pub uri: String,
9 pub genres: Vec<String>,
10 pub followers: Option<u64>,
11}