package com.reactnative.ivpusic.imagepicker;

import android.content.Intent;

public class MessageEvent {
    private int requestCode;
    private int responseCode;
    private Intent intent;

    MessageEvent(int requestCode, int responseCode, Intent intent) {
        this.requestCode = requestCode;
        this.responseCode = responseCode;
        this.intent = intent;
    }

    public int getRequestCode() {
        return requestCode;
    }

    public void setRequestCode(int requestCode) {
        this.requestCode = requestCode;
    }

    public int getResponseCode() {
        return responseCode;
    }

    public void setResponseCode(int responseCode) {
        this.responseCode = responseCode;
    }

    public Intent getIntent() {
        return intent;
    }

    public void setIntent(Intent intent) {
        this.intent = intent;
    }
}
