1import { PhotoListElement } from "./PhotoListElement"; 2import { Vars } from "./Vars"; 3 4export class PhotoListRow{ 5 public Elements: PhotoListElement[] = []; 6 public Height: number = Vars.PHOTO_HEIGHT; 7 public Width: number = 10; 8}