19 lines
309 B
C#
19 lines
309 B
C#
|
|
#if NET8_0
|
|
using Microsoft.UI.Xaml.Controls;
|
|
#else
|
|
using Windows.UI.Xaml.Controls;
|
|
#endif
|
|
|
|
namespace Wino.Views.ImapSetup
|
|
{
|
|
|
|
public sealed partial class PreparingImapFoldersPage : Page
|
|
{
|
|
public PreparingImapFoldersPage()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
}
|
|
}
|