CountryResponse.kt 324 Bytes
Newer Older
1
package com.yidianling.user.http.response
konghaorui committed
2 3 4 5 6 7 8 9 10 11 12 13

/**
 * author : Zhangwenchao
 * e-mail : zhangwch@yidianling.com
 * time   : 2018/02/03
 */
data class CountryResponse(val countryList: List<Country>) {

    data class Country(val code: String,
                       val en_name: String,
                       val name: String)
}