subtracks/app/models/settings.ts
2021-08-16 18:11:08 +09:00

20 lines
326 B
TypeScript

export interface Server {
id: string
address: string
username: string
token: string
salt: string
}
export interface AppSettings {
servers: Server[]
home: {
lists: string[]
}
activeServer?: string
scrobble: boolean
estimateContentLength: boolean
maxBitrateWifi: number
maxBitrateMobile: number
}