package com.shunzhi.parent.bean; /** * Created by 10501 on 2018/3/19. */ public class NIMLoginResultBean { public NIMLoginResultBean() { } public NIMLoginResultBean(boolean isSuccess, int resultCode, Throwable throwable) { this.isSuccess = isSuccess; this.resultCode = resultCode; this.throwable = throwable; } private boolean isSuccess; private int resultCode; private Throwable throwable; public boolean isSuccess() { return isSuccess; } public void setSuccess(boolean success) { isSuccess = success; } public int getResultCode() { return resultCode; } public void setResultCode(int resultCode) { this.resultCode = resultCode; } public Throwable getThrowable() { return throwable; } public void setThrowable(Throwable throwable) { this.throwable = throwable; } }