Files
gameyfin/frontend/src/app/models/dtos/PlatformDto.ts
T
Simon 8e23549336 feat(platforms): added platform support (#67)
Now libraries can be assigned to platforms in the admin section.
Games will be assigned to libraries on scanning.

Resolves grimsi/gameyfin#31

Co-authored-by: shawly <shawlyde@gmail.com>
2022-10-25 20:55:35 +02:00

6 lines
90 B
TypeScript

export class PlatformDto {
slug!: string;
name!: string;
platformLogoId?: string;
}