sharee.bike-App/SharedGui/View/Bike/RentalProcess/RentalProcessBookedClosedEndRental.xaml.cs

22 lines
440 B
C#
Raw Normal View History

2023-08-31 12:20:06 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
#if !NOXCT
2024-04-09 12:53:23 +02:00
namespace SharedGui.View.Bike.RentalProcess
2023-08-31 12:20:06 +02:00
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class RentalProcessBookedClosedEndRental : ContentView
{
public RentalProcessBookedClosedEndRental()
{
InitializeComponent ();
}
}
}
# endif