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
|
|
|
|
|
|
|
2024-07-21 05:45:02 +02:00
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|