diff options
Diffstat (limited to 'models/Photo.ts')
-rw-r--r-- | models/Photo.ts | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/models/Photo.ts b/models/Photo.ts deleted file mode 100644 index f40d492..0000000 --- a/models/Photo.ts +++ /dev/null @@ -1,31 +0,0 @@ -export default interface Photo { - /** - * Name of the photo or the file. - */ - name: string; - - /** - * Path to the photo. - */ - src: string; - - /** - * Latitude where the photo was taken. - */ - latitude: number; - - /** - * Logitude where the photo was taken. - */ - longitude: number; - - /** - * Date and time when the photo was taken. - */ - time: string; - - /** - * Photo thumnnail. - */ - thumbnail: string; -} |