1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/grid/GridPhoto.ts

13 lines
288 B
TypeScript
Raw Normal View History

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