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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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