Files
Wino-Mail/Wino.Mail/Views/ImapSetup/PreparingImapFoldersPage.xaml.cs

30 lines
810 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238
2025-02-16 11:35:43 +01:00
namespace Wino.Views.ImapSetup;
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class PreparingImapFoldersPage : Page
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:35:43 +01:00
public PreparingImapFoldersPage()
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:35:43 +01:00
this.InitializeComponent();
2024-04-18 01:44:37 +02:00
}
}