Files
Wino-Mail/Wino.Mail/Views/Account/AccountManagementPage.xaml.cs

17 lines
360 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System;
using Windows.UI.Xaml.Navigation;
using Wino.Views.Abstract;
namespace Wino.Views
2024-04-18 01:44:37 +02:00
{
public sealed partial class AccountManagementPage : AccountManagementPageAbstract
2024-04-18 01:44:37 +02:00
{
public AccountManagementPage()
{
InitializeComponent();
2024-04-18 01:44:37 +02:00
NavigationCacheMode = NavigationCacheMode.Enabled;
}
2024-04-18 01:44:37 +02:00
}
}