mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 05:06:08 +03:00
19 lines
371 B
C#
19 lines
371 B
C#
using MvvmCross.ViewModels;
|
|
using ProxySuper.Core.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProxySuper.Core
|
|
{
|
|
public class App : MvxApplication
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
RegisterAppStart<HomeViewModel>();
|
|
}
|
|
}
|
|
}
|