package com.bleplx.adapter;

import androidx.annotation.Nullable;

public class OTACallback {
  private int code = 0;

  @Nullable
  private String progress;

  public OTACallback(int code, @Nullable String progress) {
    this.code = code;
    this.progress = progress;
  }


  public int getCode() {
    return code;
  }


  @Nullable
  public String getProgress() {
    return progress;
  }

}
