Skip to content

Instantly share code, notes, and snippets.

@TheAlchemistKE
Created July 4, 2019 09:33
Show Gist options
  • Save TheAlchemistKE/7cdba166277816cf30fb07dd9e957e4f to your computer and use it in GitHub Desktop.
Save TheAlchemistKE/7cdba166277816cf30fb07dd9e957e4f to your computer and use it in GitHub Desktop.
Uploads File.
package com.kelynnjeri.memories;
/**
* Created by Kelyn Njeri on 7/1/19.
**/
public class Uploads {
String imageUrl;
public Uploads() {
//Empty Constructor.
}
public Uploads(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment