增加TooManyRequests
石头 authored at 2025-07-13 21:05:51
420.00 B
X
using System;
using System.Windows.Input;
using Xamarin.Essentials;
using Xamarin.Forms;

namespace MobileApp.ViewModels
{
    public class AboutViewModel : BaseViewModel
    {
        public AboutViewModel()
        {
            Title = "关于";

            OpenWebCommand = new Command(() => Launcher.OpenAsync(new Uri("https://newlifex.com")));
        }

        public ICommand OpenWebCommand { get; }
    }
}