Skip to content

Commit

Permalink
格式化
Browse files Browse the repository at this point in the history
  • Loading branch information
microshow committed Sep 3, 2020
1 parent 03f7fe6 commit 84f8363
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

import java.io.Serializable;

import static io.microshow.retrofitgo.arch.Resource.Status.ERROR;
import static io.microshow.retrofitgo.arch.Resource.Status.LOADING;
import static io.microshow.retrofitgo.arch.Resource.Status.SUCCESS;


public class Resource<T> {
public class Resource<T> implements Serializable {

@NonNull
public final Status status;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package io.microshow.retrofitgo.internal;

import java.io.Serializable;

/**
*
*/
public class Response<T> {
public class Response<T> implements Serializable {

private int code;
private String message;
Expand Down

0 comments on commit 84f8363

Please sign in to comment.