Files
mapix/src/domain/photo.ts

10 lines
177 B
TypeScript

export interface Photo {
id: string;
fileName: string;
capturedAt: string | null;
latitude: number | null;
longitude: number | null;
thumbnailUrl: string | null;
}