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

9 lines
208 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();
}