消除单元测试编译警告
智能大石头 authored at 2025-09-01 09:12:02
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; }
    }
}