Added client abstractions for backend functions

This commit is contained in:
2025-03-04 14:28:50 +01:00
parent 3a118a9b34
commit c2f89b1b09
44 changed files with 9135 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
using Android.App;
using Android.Runtime;
namespace WorkTime.Mobile;
[Application]
public class MainApplication : MauiApplication {
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
: base(handle, ownership) { }
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}