v11.6.2025.0901 重构控制台日志为队列输出;增强Json序列化长整数;增强对象容器;改进支持机器学习
using System; using System.Collections.Generic; using System.Text; namespace MobileApp.Models { public enum MenuItemType { Browse, About } public class HomeMenuItem { public MenuItemType Id { get; set; } public string Title { get; set; } } }