gallery-frontend/src/app/gallery/shared/thumbnail.model.ts
Danyi Dávid 43f9eabaed * nofollow
* height+width added to thumb img tag
* deploy fix
2018-07-08 21:43:01 +02:00

11 lines
265 B
TypeScript

import {ThumbLabel} from "./thumb-label.model";
export class Thumbnail {
public slug: string = '';
public image: string = '';
public path: string = '';
public label: ThumbLabel = new ThumbLabel();
public height: number = 0;
public width: number = 0;
}