mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 08:15:37 +00:00
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
export class Theme {
|
|
constructor(
|
|
public readonly name: string,
|
|
public readonly background: string,
|
|
public readonly primary: string,
|
|
public readonly secondary?: string,
|
|
public readonly tertiary?: string
|
|
) {
|
|
}
|
|
} |