Added download option for image urls
This commit is contained in:
parent
0a65fd8c87
commit
657668dc7d
3 changed files with 56 additions and 0 deletions
|
|
@ -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 = {};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue