CountryResponse.kt 329 Bytes
Newer Older
1
package com.yidianling.user.http.response
konghaorui committed
2 3 4 5 6 7

/**
 * author : Zhangwenchao
 * e-mail : zhangwch@yidianling.com
 * time   : 2018/02/03
 */
刘鹏 committed
8 9 10 11
data class CountryResponse(val countryCode: String,
                           val en_name: String,
                           val country: String,
                           val prefix: String)