Added platform specific partial classes

This commit is contained in:
Thorsten Sommer 2022-08-14 20:09:22 +02:00
parent b1f5e94069
commit 96c177c99f
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#if ANDROID
namespace UI_MAUI.Pages;
public partial class LoadProject
{
}
#endif

View File

@ -0,0 +1,9 @@
#if IOS
namespace UI_MAUI.Pages;
public partial class LoadProject
{
}
#endif