ohmyform-api/src/entity/embedded/geo.location.embedded.ts
2021-05-02 12:43:54 +02:00

10 lines
185 B
TypeScript

import { Column } from 'typeorm'
export class GeoLocationEmbedded {
@Column({ nullable: true })
readonly country?: string
@Column({ nullable: true })
readonly city?: string
}