first commit

This commit is contained in:
2026-05-25 23:53:50 +03:00
commit 5081d01aa4
77 changed files with 16985 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
[Serializable]
public class NoteData
{
public string title;
public string content;
public NoteData()
{
}
public NoteData(string title, string content)
{
this.title = title;
this.content = content;
}
}