mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-06 02:50:30 -06:00
Building out front end to start wiring everything up
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user