mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-21 20:56:08 +03:00
14 lines
255 B
C#
14 lines
255 B
C#
using MvvmCross.ViewModels;
|
|
using ProxySuper.Core.ViewModels;
|
|
|
|
namespace ProxySuper.Core
|
|
{
|
|
public class App : MvxApplication
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
RegisterAppStart<HomeViewModel>();
|
|
}
|
|
}
|
|
}
|