2017-08-09 13:41:32 +02:00
|
|
|
export class Image {
|
2017-08-14 13:19:11 +02:00
|
|
|
public dir: string = "";
|
2017-08-09 13:41:32 +02:00
|
|
|
public label: string = "";
|
|
|
|
|
public path: string = "";
|
2017-08-14 13:19:11 +02:00
|
|
|
public width: number = 0;
|
|
|
|
|
public height: number = 0;
|
2017-08-14 23:14:44 +02:00
|
|
|
public thumbWidth: number = 0;
|
|
|
|
|
public thumbHeight: number = 0;
|
2017-08-09 13:41:32 +02:00
|
|
|
}
|