gallery-frontend/src/app/gallery/shared/thumbnail.model.ts

11 lines
265 B
TypeScript
Raw Normal View History

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;
public width: number = 0;
}