1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-02-07 13:41:44 +02:00

12 lines
287 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);
}
}