You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SmsForwarder/app/src/main/java/com/idormy/sms/forwarder/core/http/entity/TipInfo.kt

27 lines
568 B
Kotlin

package com.idormy.sms.forwarder.core.http.entity
import androidx.annotation.Keep
/**
* @author xuexiang
* @since 2019-08-28 15:35
*/
@Keep
class TipInfo {
/**
* title : 小贴士3
* content :
*
*欢迎关注我的微信公众号我的Android开源之旅
*
*<br></br>
*/
var title: String? = null
var content: String? = null
override fun toString(): String {
return "TipInfo{" +
"title='" + title + '\'' +
", content='" + content + '\'' +
'}'
}
}