mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
export class Theme {
|
|
constructor(
|
|
public readonly name: string,
|
|
public readonly primary: string,
|
|
public readonly secondary?: string,
|
|
public readonly tertiary?: string
|
|
) {
|
|
}
|
|
} |