package com.seewo.sdk.event;

import com.seewo.sdk.model.SDKIIpRemoteState;

/* JADX INFO: loaded from: classes.dex */
public class NetRemoteEvent {

    public static class IIpRemoteStatusChanged {
        public SDKIIpRemoteState remoteState;

        private IIpRemoteStatusChanged() {
        }

        public IIpRemoteStatusChanged(SDKIIpRemoteState sDKIIpRemoteState) {
            this();
            this.remoteState = sDKIIpRemoteState;
        }
    }

    public static class RemotePublishMessageFinish {
    }

    public static class RemotePublishMessageUpdate {
        public String publishContent;
        public int repeatCount;
        public int scrollMode;

        private RemotePublishMessageUpdate() {
        }

        public RemotePublishMessageUpdate(int i2, int i3, String str) {
            this();
            this.repeatCount = i2;
            this.scrollMode = i3;
            this.publishContent = str;
        }
    }
}
