Dodanie klasy Note

This commit is contained in:
Naiki00 2021-01-07 22:42:56 +01:00
parent 17f7cbcfeb
commit 765ac1dd2d

View File

@ -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;
}
}