v11.6.2025.0901 重构控制台日志为队列输出;增强Json序列化长整数;增强对象容器;改进支持机器学习
智能大石头 authored at 2025-09-01 08:13:53
303.00 B
X
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; }
    }
}