mirror of https://github.com/tasks/tasks
Move data objects to org.tasks package
parent
3943d620a5
commit
3d448b0142
@ -1,9 +1,4 @@
|
|||||||
/**
|
package org.tasks.data;
|
||||||
* Copyright (c) 2012 Todoroo Inc
|
|
||||||
*
|
|
||||||
* See the file "LICENSE" for the full license governing this code.
|
|
||||||
*/
|
|
||||||
package com.todoroo.astrid.data;
|
|
||||||
|
|
||||||
|
|
||||||
import android.arch.persistence.room.ColumnInfo;
|
import android.arch.persistence.room.ColumnInfo;
|
||||||
@ -1,19 +1,13 @@
|
|||||||
/**
|
package org.tasks.data;
|
||||||
* Copyright (c) 2012 Todoroo Inc
|
|
||||||
*
|
|
||||||
* See the file "LICENSE" for the full license governing this code.
|
|
||||||
*/
|
|
||||||
package com.todoroo.astrid.data;
|
|
||||||
|
|
||||||
|
|
||||||
import android.arch.persistence.room.ColumnInfo;
|
import android.arch.persistence.room.ColumnInfo;
|
||||||
import android.arch.persistence.room.Dao;
|
|
||||||
import android.arch.persistence.room.Entity;
|
import android.arch.persistence.room.Entity;
|
||||||
import android.arch.persistence.room.PrimaryKey;
|
import android.arch.persistence.room.PrimaryKey;
|
||||||
|
|
||||||
import com.todoroo.andlib.data.AbstractModel;
|
|
||||||
import com.todoroo.andlib.data.Property;
|
import com.todoroo.andlib.data.Property;
|
||||||
import com.todoroo.andlib.data.Table;
|
import com.todoroo.andlib.data.Table;
|
||||||
|
import com.todoroo.astrid.data.RemoteModel;
|
||||||
|
|
||||||
@Entity(tableName = "task_attachments")
|
@Entity(tableName = "task_attachments")
|
||||||
public final class TaskAttachment {
|
public final class TaskAttachment {
|
||||||
Loading…
Reference in New Issue