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

16 lines
326 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;
2025-02-16 11:54:23 +01:00
namespace Wino.Views;
public sealed partial class AccountManagementPage : AccountManagementPageAbstract
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
public AccountManagementPage()
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
InitializeComponent();
2024-04-18 01:44:37 +02:00
2025-02-16 11:54:23 +01:00
NavigationCacheMode = NavigationCacheMode.Enabled;
2024-04-18 01:44:37 +02:00
}
}