mirror of
https://github.com/proxysu/ProxySU.git
synced 2025-04-10 04:30:54 +00:00
14 lines
310 B
C#
14 lines
310 B
C#
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
|
using MvvmCross.Platforms.Wpf.Views;
|
|
|
|
namespace ProxySuper.WPF.Views
|
|
{
|
|
[MvxWindowPresentation]
|
|
public partial class BrookConfigView : MvxWindow
|
|
{
|
|
public BrookConfigView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|