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/NewUrlRespond.kt

5 lines
180 B
Kotlin
Raw Normal View History

2018-02-23 10:55:44 +00:00
package net.cismon.urlshortener.wrapper
import net.cismon.urlshortener.model.UrlModel
class NewUrlRespond(url: UrlModel): Respond<NewUrlInfo>(0, NewUrlInfo(url.id!!, url.uuid!!))