Back to project page my-wallpaper.
The source code is released under:
MIT License
If you think the Android project my-wallpaper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.koonen.photostream.dao; // w w w.java 2 s .com /** * * @author Glick * */ public class PhotoUrl { private int id; private String url; public PhotoUrl(int id, String url) { super(); this.id = id; this.url = url; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } }