Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ru.mrchebik.model;
- /**
- * Created by mrchebik on 27.08.16.
- */
- public class NoteModel {
- private String title;
- private String text;
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getText() {
- return text;
- }
- public void setText(String text) {
- this.text = text;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement