first commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user