Logo

GitLab

Sign in

customer / drp_android

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • drp_android
  • ..
  • bean
  • ImageInfo.java
  • 2.0.0 工程从gitlab 迁移
    b8b10de7
    杨琦 authored
    2017-09-04 10:32:04 +0800  
    Browse Code »
ImageInfo.java 356 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.drp.mobliemall.bean;

import android.graphics.Bitmap;

import java.io.Serializable;

/**
 * Created by Venus_shi on 16/5/26.
 */
public class ImageInfo implements Serializable {

    public String path;
    public Bitmap bitmap;

    public ImageInfo(String path, Bitmap bitmap){
        this.path = path;
        this.bitmap = bitmap;
    }
}