mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
13 lines
288 B
TypeScript
13 lines
288 B
TypeScript
import {PhotoDTO} from '../../../../common/entities/PhotoDTO';
|
|
import {Photo} from '../Photo';
|
|
|
|
export class GridPhoto extends Photo {
|
|
|
|
|
|
constructor(photo: PhotoDTO, renderWidth: number, renderHeight: number, public rowId: number) {
|
|
super(photo, renderWidth, renderHeight);
|
|
}
|
|
|
|
|
|
}
|