1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 05:06:08 +03:00
ProxySU/ProxySuper.Core/App.cs
2021-05-14 19:07:19 +08:00

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>();
}
}
}