mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
21 lines
408 B
C#
21 lines
408 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
using Xamarin.Forms;
|
||
|
using Xamarin.Forms.Xaml;
|
||
|
|
||
|
namespace ShareeSharedGuiLib.View.Bike.RentalProcess
|
||
|
{
|
||
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
||
|
public partial class RentalProcess2StepsBar : ContentView
|
||
|
{
|
||
|
public RentalProcess2StepsBar ()
|
||
|
{
|
||
|
InitializeComponent ();
|
||
|
}
|
||
|
}
|
||
|
}
|