11 lines
187 B
Kotlin
11 lines
187 B
Kotlin
package com.icegps.shared.model
|
|
|
|
/**
|
|
* @author tabidachinokaze
|
|
* @date 2025/11/22
|
|
*/
|
|
interface IGeoPoint {
|
|
val longitude: Double
|
|
val latitude: Double
|
|
val altitude: Double
|
|
} |