mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 08:15:48 +00:00
Finished implementation of frontend functionality.
Styling and bugfixing next
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import {FormControl} from "@angular/forms";
|
||||
|
||||
export class PathToSlugDto {
|
||||
slug: string;
|
||||
path: string;
|
||||
|
||||
constructor(slug: string, path: string) {
|
||||
this.slug = slug;
|
||||
this.path = path;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export class UnmappedFileDto {
|
||||
id!: number;
|
||||
path!: string;
|
||||
}
|
||||
Reference in New Issue
Block a user