This repository has been archived on 2018-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
url-shortener/src/main/kotlin/net/cismon/urlshortener/wrapper/UserUrlRespond.kt

7 lines
222 B
Kotlin

package net.cismon.urlshortener.wrapper
import net.cismon.urlshortener.model.UrlModel
class UserUrlRespond(list: List<UrlModel>) : Respond<List<UserUrlInfo>>(0, list.map {
UserUrlInfo(it.id!!, it.uuid!!, it.url!!)
})