package xyz.stream.utils.event;

/* JADX INFO: loaded from: classes3.dex */
public class LoginEvent {
    String account;
    String password;

    public LoginEvent(String str, String str2) {
        this.account = str;
        this.password = str2;
    }

    public String getAccount() {
        return this.account;
    }

    public String getPassword() {
        return this.password;
    }
}
