diff --git a/app/src/main/java/com/example/notatkon/note/Note.java b/app/src/main/java/com/example/notatkon/note/Note.java new file mode 100644 index 0000000..af7aab3 --- /dev/null +++ b/app/src/main/java/com/example/notatkon/note/Note.java @@ -0,0 +1,24 @@ +package com.example.notatkon.note; + +public class Note { + private String Title; + private String Content; + + // automatyczne dane do tablicy + private static String[] Titles = { "Title1" }; + + private static String[] Contents = { "Content1" }; + + //konstruktor + public Note() { + + } + + public String getTitle() { + return Title; + } + + public String getContent() { + return Content; + } +} \ No newline at end of file