15 lines
274 B
C#
15 lines
274 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace HK
|
|||
|
{
|
|||
|
public class NotebookData
|
|||
|
{
|
|||
|
public List<NotebookItemData> Datas = new List<NotebookItemData>();
|
|||
|
}
|
|||
|
|
|||
|
public class NotebookItemData
|
|||
|
{
|
|||
|
public string color;
|
|||
|
public int count;
|
|||
|
}
|
|||
|
}
|