切换标签

This commit is contained in:
xmac
2025-05-23 11:48:20 +08:00
parent 4b7a6b1dc8
commit 0c44f985ec
31 changed files with 295 additions and 111 deletions

View File

@@ -0,0 +1,12 @@
namespace NBF
{
public class ListClassifyData
{
public string Title;
public ListClassifyData(string title)
{
this.Title = title;
}
}
}