summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/launcher/home/CMHomeCalendar.java
blob: c150a2dda5896596b404e7c549008b331760c127 (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
package org.cyanogenmod.launcher.home;

/**
 * Created by Schoen on 7/24/15.
 */
public class CMHomeCalendar extends CMHomeCard {

    long startTime;
    long endTime;
    String title;
    String location;

    public CMHomeCalendar(
            long startTime,
            long endTime,
            String title,
            String location){

        this.startTime = startTime;
        this.endTime = endTime;
        this.title = title;
        this.location = location;

    }

}