1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

13 lines
288 B
TypeScript
Raw Normal View History

2018-03-30 15:30:30 -04:00
import {PhotoDTO} from '../../../../common/entities/PhotoDTO';
import {Photo} from '../Photo';
2017-03-18 00:11:53 +01:00
export class GridPhoto extends Photo {
constructor(photo: PhotoDTO, renderWidth: number, renderHeight: number, public rowId: number) {
super(photo, renderWidth, renderHeight);
}
2016-05-12 11:00:46 +02:00
}