summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/launcher/home/CMHomeNews.java
blob: 8cc087ee344b83b1f7e90630a128c508d2b2518b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;

    }

}