1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
| /**
| * zlm hook事件中的on_send_rtp_stopped事件的参数
| * @author lin
| */
| public class OnSendRtpStoppedHookParam extends HookParam{
| private String app;
| private String stream;
|
|
| public String getApp() {
| return app;
| }
|
| public void setApp(String app) {
| this.app = app;
| }
|
| public String getStream() {
| return stream;
| }
|
| public void setStream(String stream) {
| this.stream = stream;
| }
| }
|
|