spotify_cli/domain/
device.rs

1use serde::{Deserialize, Serialize};
2
3/// Playback device metadata.
4#[derive(Debug, Clone, Serialize, Deserialize)]
5pub struct Device {
6    pub id: String,
7    pub name: String,
8    pub volume_percent: Option<u32>,
9}