mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-15 07:52:02 +02:00
26 lines
431 B
Java
26 lines
431 B
Java
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 getId() {
|
|
return mId;
|
|
}
|
|
|
|
public String getName() {
|
|
return mName;
|
|
}
|
|
|
|
public String getText() {
|
|
return mText;
|
|
}
|
|
}
|