1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-01-12 04:23:09 +02:00
pigallery2/frontend/app/gallery/grid/GridPhoto.ts

11 lines
294 B
TypeScript
Raw Normal View History

2016-12-27 21:55:51 +02:00
import {PhotoDTO} from "../../../../common/entities/PhotoDTO";
2017-03-18 01:11:53 +02:00
import {Photo} from "../Photo";
export class GridPhoto extends Photo {
2017-03-18 01:11:53 +02:00
constructor(photo: PhotoDTO, renderWidth: number, renderHeight: number, public rowId: number) {
super(photo, renderWidth, renderHeight);
2016-06-23 22:43:23 +02:00
}
2016-05-12 11:00:46 +02:00
}