mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2025-11-23 15:56:18 +00:00
8 lines
246 B
Kotlin
8 lines
246 B
Kotlin
package com.github.insanusmokrassar.TelegramBotAPI.CommonAbstracts
|
|
|
|
interface CommonContactData {
|
|
val phoneNumber: String
|
|
val firstName: String
|
|
val lastName: String?
|
|
val vcard: String? // TODO:: Replace by some vCard abstraction
|
|
} |