Building out front end to start wiring everything up

This commit is contained in:
Violet Caulfield
2024-10-13 10:16:58 -05:00
parent e09c71590c
commit d345ad06f6
15 changed files with 107 additions and 18 deletions

View File

@@ -1,10 +1,12 @@
export class JellyfinCredentials {
username: string;
accessToken: string;
password?: string | undefined;
accessToken?: string | undefined;
constructor(username: string, accessToken: string) {
constructor(username: string, password?: string | undefined, accessToken?: string | undefined) {
this.username = username;
this.password = password;
this.accessToken = accessToken;
}
}