Back to project page soas.
The source code is released under:
Apache License
If you think the Android project soas 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.meg7.soas.data; /*from w w w . j a va 2s. c o m*/ /** * A data class representing offline notes added by user. * * @author Mostafa Gazar <eng.mostafa.gazar@gmail.com> */ public class OfflineNote { public int id; public int photoId; public String note; }