mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 00:30:02 +00:00
8e23549336
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>
8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
import {PlatformDto} from "./PlatformDto";
|
|
|
|
export class LibraryDto {
|
|
path!: string;
|
|
platforms!: PlatformDto[];
|
|
}
|
|
|