Files
Wino-Mail/Wino.Core.UWP/Services/AppShellService.cs
2024-07-13 03:45:55 +02:00

20 lines
349 B
C#

#if NET8_0
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
#else
using Windows.UI.Xaml;
#endif
namespace Wino.Core.WinUI.Services
{
public interface IAppShellService
{
Window AppWindow { get; set; }
}
public class AppShellService : IAppShellService
{
public Window AppWindow { get; set; }
}
}