+1
changelog
+1
changelog
-15
src/Components/Structs/PhotoListElements/PhotoListPhoto.ts
-15
src/Components/Structs/PhotoListElements/PhotoListPhoto.ts
···
1
-
<<<<<<< HEAD
2
1
import { Photo } from "../Photo";
3
2
import { PhotoListElement } from "../PhotoListElement";
4
3
import { PhotoListElementType } from "../PhotoListElementType";
···
11
10
this.Type = PhotoListElementType.PHOTO;
12
11
this.Photo = photo;
13
12
}
14
-
=======
15
-
import { Photo } from "../Photo";
16
-
import { PhotoListElement } from "../PhotoListElement";
17
-
import { PhotoListElementType } from "../PhotoListElementType";
18
-
19
-
export class PhotoListPhoto extends PhotoListElement{
20
-
public Photo!: Photo;
21
-
22
-
constructor( photo: Photo ){
23
-
super();
24
-
this.Type = PhotoListElementType.PHOTO;
25
-
this.Photo = photo;
26
-
}
27
-
>>>>>>> e612756 (stuff)
28
13
}