Back to project page Android-Todo-Application.
The source code is released under:
MIT License
If you think the Android project Android-Todo-Application listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.samvandenberge.todo.model; /* w ww. j a v a 2 s.c o m*/ /** * Todo object * @author Sam * */ public class Todo { private int id; private String note; private String createdAt; private int status; public Todo() { } public Todo(String note, int status) { this.note = note; this.status = status; } public Todo(int id, String note, int status) { this.id = id; this.note = note; this.status = status; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getCreatedAt() { return createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } }