15 lines
362 B
C#
15 lines
362 B
C#
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;
|
|
}
|
|
} |