VideoInfo.java 1.09 KB
package com.cnlive.cnUploadDemo.file;

import android.graphics.Bitmap;

/**
 * Created by Lynn on 6/15/2017.
 */

public class VideoInfo {
    private String filePath;
    private String mimeType;
    private Bitmap b;
    private String title;
    private String time;
    private String size;

    public String getFilePath() {
        return filePath;
    }

    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }

    public String getMimeType() {
        return mimeType;
    }

    public void setMimeType(String mimeType) {
        this.mimeType = mimeType;
    }

    public Bitmap getB() {
        return b;
    }

    public void setB(Bitmap b) {
        this.b = b;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getTime() {
        return time;
    }

    public void setTime(String time) {
        this.time = time;
    }

    public String getSize() {
        return size;
    }

    public void setSize(String size) {
        this.size = size;
    }
}