10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
import { Column } from 'typeorm'
|
|
|
|
export class GeoLocationEmbedded {
|
|
@Column({ nullable: true })
|
|
readonly country?: string
|
|
|
|
@Column({ nullable: true })
|
|
readonly city?: string
|
|
}
|