AudioHomeEvent.java 322 Bytes
Newer Older
严久程 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.ydl.consultantim.event;

/**
 * @author yuanWai
 * @描述:
 * @Copyright Copyright (c) 2018
 * @Company 壹点灵
 * @date 2018/11/19
 */
public class AudioHomeEvent {
    //1.发送停止播放电话铃声和震动
    public int type;

    public AudioHomeEvent(int type){
        this.type = type;
    }
}