1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 13:16:09 +03:00
ProxySU/ProxySuper.Core/App.cs

19 lines
371 B
C#
Raw Normal View History

2021-05-08 13:52:59 +03:00
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()
{
2021-05-14 14:07:19 +03:00
RegisterAppStart<HomeViewModel>();
2021-05-08 13:52:59 +03:00
}
}
}