Started adding capture page logic
This commit is contained in:
15
src/WorkTime.Mobile/Views/Pages/CapturePage.xaml.cs
Normal file
15
src/WorkTime.Mobile/Views/Pages/CapturePage.xaml.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user