summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/launcher/home/CMHomeNews.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/cyanogenmod/launcher/home/CMHomeNews.java')
-rw-r--r--src/org/cyanogenmod/launcher/home/CMHomeNews.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/org/cyanogenmod/launcher/home/CMHomeNews.java b/src/org/cyanogenmod/launcher/home/CMHomeNews.java
new file mode 100644
index 000000000..8cc087ee3
--- /dev/null
+++ b/src/org/cyanogenmod/launcher/home/CMHomeNews.java
@@ -0,0 +1,29 @@
+package org.cyanogenmod.launcher.home;
+
+/**
+ * Created by Schoen on 7/24/15.
+ */
+public class CMHomeNews extends CMHomeCard {
+
+ String imageURL;
+ String title;
+ String source;
+ long time;
+ String url;
+
+ public CMHomeNews(
+ String imageURL,
+ String title,
+ String source,
+ long time,
+ String url){
+
+ this.imageURL = imageURL;
+ this.title = title;
+ this.source = source;
+ this.time = time;
+ this.url = url;
+
+ }
+
+}