1
0
Fork 0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-04-10 04:30:54 +00:00
ProxySU/ProxySuper.WPF/Views/Xray/XrayEditorView.xaml.cs
2022-11-23 22:06:09 +08:00

15 lines
322 B
C#

using MvvmCross.Platforms.Wpf.Presenters.Attributes;
using MvvmCross.Platforms.Wpf.Views;
using System;
namespace ProxySuper.WPF.Views
{
[MvxWindowPresentation]
public partial class XrayEditorView : MvxWindow
{
public XrayEditorView()
{
InitializeComponent();
}
}
}