mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 13:16:09 +03:00
15 lines
306 B
C#
15 lines
306 B
C#
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
|
using MvvmCross.Platforms.Wpf.Views;
|
|
|
|
namespace ProxySuper.WPF.Views
|
|
{
|
|
[MvxWindowPresentation]
|
|
public partial class ShareLinkView : MvxWindow
|
|
{
|
|
public ShareLinkView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|