docs: describe project structure
This commit is contained in:
9
src/domain/photo.ts
Normal file
9
src/domain/photo.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface Photo {
|
||||
id: string;
|
||||
fileName: string;
|
||||
capturedAt: string | null;
|
||||
latitude: number | null;
|
||||
longitude: number | null;
|
||||
thumbnailUrl: string | null;
|
||||
}
|
||||
|
||||
7
src/domain/route.ts
Normal file
7
src/domain/route.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface RoutePoint {
|
||||
photoId: string;
|
||||
capturedAt: string;
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user