mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-30 14:15:30 +00:00
13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
import { Field, ObjectType } from 'type-graphql'
|
|
|
|
import { Location } from './Location'
|
|
|
|
@ObjectType()
|
|
export class UserLocationResult {
|
|
@Field(() => Location)
|
|
userLocation: Location
|
|
|
|
@Field(() => Location)
|
|
communityLocation: Location
|
|
}
|