11 lines
265 B
TypeScript
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;
|
|
}
|