aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/lacolaco/smileessence/entity/SavedHashtag.java
blob: 381317c5dea8b36fb7b9208a4db38d80c46157d4 (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
package net.lacolaco.smileessence.entity;

import com.activeandroid.Model;
import com.activeandroid.annotation.Column;
import com.activeandroid.annotation.Table;

@Table(name = "Hashtag")
public class SavedHashtag extends Model
{

    @Column(name = "Text", notNull = true)
    public String text;

    public SavedHashtag()
    {
        super();
    }

    public SavedHashtag(String text)
    {
        super();
        this.text = text;
    }
}