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.

23 lines
412 B
Kotlin

package com.common.bluetooth.bean
import android.os.Parcelable
import kotlinx.parcelize.Parcelize
/**
* 联想词事件
*
* @author wangym
* @since 2021-11-1
*/
@Parcelize
data class AssociateEvent(
/**
* 输入事件设备的类型 1键盘2鼠标
*/
val inputType: Int = 1,
/**
* 事件
*/
var associate: ArrayList<AssociateItem> = ArrayList()
) : Parcelable