Files
Wino-Mail/Wino.Shared.WinRT/Services/AppShellService.cs

19 lines
319 B
C#
Raw Normal View History

2024-07-13 03:45:55 +02:00
#if NET8_0
using Microsoft.UI.Xaml;
#else
2024-07-20 23:32:39 +02:00
using Microsoft.UI.Xaml;
2024-07-13 03:45:55 +02:00
#endif
namespace Wino.Shared.WinRT.Services
2024-07-13 03:45:55 +02:00
{
public interface IAppShellService
{
Window AppWindow { get; set; }
}
public class AppShellService : IAppShellService
{
public Window AppWindow { get; set; }
}
}