All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pro.shuangxi.pojo.AudioLine Maven / Gradle / Ivy

package pro.shuangxi.pojo;

/**
 * @author :mengshx
 * datetime :Created in 2022/3/29 14:48
 * 声音
 */
public class AudioLine extends MessageLine {
    byte[] content;

    public AudioLine(byte[] content) {
        this.content = content;
    }

    public byte[] getContent() {
        return content;
    }

    public void setContent(byte[] content) {
        this.content = content;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy