mirror of
https://github.com/proxysu/ProxySU.git
synced 2025-04-02 05:16:18 +03:00
23 lines
513 B
C#
23 lines
513 B
C#
using MvvmCross.Commands;
|
|
using MvvmCross.Navigation;
|
|
using MvvmCross.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProxySuper.Core.ViewModels
|
|
{
|
|
public class MainViewModel : MvxViewModel
|
|
{
|
|
private readonly IMvxNavigationService _navigationService;
|
|
|
|
public MainViewModel(IMvxNavigationService navigationService)
|
|
{
|
|
_navigationService = navigationService;
|
|
}
|
|
|
|
|
|
}
|
|
}
|