mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-16 13:23:47 +00:00
9 lines
247 B
Kotlin
9 lines
247 B
Kotlin
|
package com.github.insanusmokrassar.TelegramBotAPI.CommonAbstracts
|
||
|
|
||
|
interface CommonVenueData {
|
||
|
val title: String
|
||
|
val address: String
|
||
|
val foursquareId: String?
|
||
|
val foursquareType: String? // TODO:: Rewrite with enum or interface
|
||
|
}
|