Started adding capture page logic

This commit is contained in:
2025-03-05 19:32:18 +01:00
parent c2f89b1b09
commit 44da4932aa
17 changed files with 458 additions and 97 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WorkTime.Mobile.ViewModels;
namespace WorkTime.Mobile.Views.Pages;
public partial class CapturePage : ContentPage {
public CapturePage(CaptureViewModel model) {
InitializeComponent();
BindingContext = model;
}
}