mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00:00
* alt text * memory lane alt text * revert sql generator change * use getAltText * oops * handle large number of people in asset * nit * add aria-label to search button * update api * fixed tests * fixed typing * fixed spacing * fix displaying null
21 lines
356 B
TypeScript
21 lines
356 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class MapMarkerResponseDto {
|
|
@ApiProperty()
|
|
id!: string;
|
|
|
|
@ApiProperty({ format: 'double' })
|
|
lat!: number;
|
|
|
|
@ApiProperty({ format: 'double' })
|
|
lon!: number;
|
|
|
|
@ApiProperty()
|
|
city!: string | null;
|
|
|
|
@ApiProperty()
|
|
state!: string | null;
|
|
|
|
@ApiProperty()
|
|
country!: string | null;
|
|
}
|