summaryrefslogtreecommitdiffstats
path: root/src/ryuslash/org/dvdroid/DVD.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ryuslash/org/dvdroid/DVD.java')
-rw-r--r--src/ryuslash/org/dvdroid/DVD.java55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/ryuslash/org/dvdroid/DVD.java b/src/ryuslash/org/dvdroid/DVD.java
new file mode 100644
index 0000000..eba0050
--- /dev/null
+++ b/src/ryuslash/org/dvdroid/DVD.java
@@ -0,0 +1,55 @@
+package ryuslash.org.dvdroid;
+
+public class DVD
+{
+ private long id;
+ private String title;
+ private int watched;
+ private int wishlist;
+
+ public long getId()
+ {
+ return id;
+ }
+
+ public void setId(long id)
+ {
+ this.id = id;
+ }
+
+ public String getTitle()
+ {
+ return title;
+ }
+
+ public void setTitle(String title)
+ {
+ this.title = title;
+ }
+
+ public int getWatched()
+ {
+ return watched;
+ }
+
+ public void setWatched(int watched)
+ {
+ this.watched = watched;
+ }
+
+ public int getWishlist()
+ {
+ return wishlist;
+ }
+
+ public void setWishlist(int wishlist)
+ {
+ this.wishlist = wishlist;
+ }
+
+ @Override
+ public String toString()
+ {
+ return title;
+ }
+}