2017-08-12 18:36:49 +02:00
|
|
|
import {ThumbLabel} from "./thumb-label.model";
|
|
|
|
|
|
|
|
|
|
export class Thumbnail {
|
|
|
|
|
public slug: string = '';
|
|
|
|
|
public image: string = '';
|
|
|
|
|
public path: string = '';
|
|
|
|
|
public label: ThumbLabel = new ThumbLabel();
|
2017-08-14 13:19:11 +02:00
|
|
|
public height: number = 0;
|
2018-07-08 21:43:01 +02:00
|
|
|
public width: number = 0;
|
2017-08-12 18:36:49 +02:00
|
|
|
}
|