Added download option for image urls

This commit is contained in:
ltctceplrm 2025-05-11 17:26:12 +02:00
parent 0a65fd8c87
commit 657668dc7d
3 changed files with 56 additions and 0 deletions

View file

@ -9,6 +9,7 @@ export abstract class MediaTypeModel {
dataSource: string;
url: string;
id: string;
image?: string;
userData: object;
@ -21,6 +22,8 @@ export abstract class MediaTypeModel {
this.dataSource = '';
this.url = '';
this.id = '';
this.image = '';
this.userData = {};
}