19 lines
266 B
C#
19 lines
266 B
C#
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;
|
|
}
|
|
}
|