2024-01-23 22:07:47 +01:00

11 lines
171 B
TypeScript

import { ArgsType, Field, Int } from 'type-graphql'
@ArgsType()
export class Location {
@Field(() => Int)
longitude: number
@Field(() => Int)
latitude: number
}