add a Note model

This commit is contained in:
tibbi 2016-09-25 21:31:53 +02:00
parent ade79264c7
commit c321f0dba3
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package com.simplemobiletools.notes.models;
public class Note {
private int mId;
private String mName;
private String mText;
public Note(int id, String name, String text) {
mId = id;
mName = name;
mText = text;
}
public int getmId() {
return mId;
}
public String getmName() {
return mName;
}
public String getmText() {
return mText;
}
}