mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
17 lines
302 B
TypeScript
17 lines
302 B
TypeScript
import { Decimal } from 'decimal.js-light'
|
|
|
|
export class GmsUserAccount {
|
|
name: string
|
|
location: {
|
|
type: string
|
|
coordinates: [Decimal, Decimal]
|
|
}
|
|
|
|
address: string
|
|
radius: number
|
|
description: string
|
|
// eslint-disable-next-line camelcase
|
|
api_key: string
|
|
profileImage: unknown
|
|
}
|