ITopicHttp.kt 455 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.yidianling.dynamic.topic.http

import com.ydl.ydlcommon.data.http.BaseAPIResponse
import com.yidianling.dynamic.model.TopicDetailBean
import io.reactivex.Observable

/**
 * @author yuanwai
 * @描述:话题接口
 * @Copyright Copyright (c) 2018
 * @Company 壹点灵
 * @date 2018/12/11
 */
interface ITopicHttp{
    /**
     * 获取话题描述
     */
    fun getTopicDetail(params : String): Observable<BaseAPIResponse<TopicDetailBean>>
}