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

20 lines
399 B
C#
Raw Normal View History

2021-11-07 19:42:59 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
2024-04-09 12:53:23 +02:00
namespace SharedGui.View.Bike.RentalProcess
2021-11-07 19:42:59 +01:00
{
[XamlCompilation(XamlCompilationOptions.Compile)]
2024-04-09 12:53:23 +02:00
public partial class RentalProcess1StepBar : ContentView
2021-11-07 19:42:59 +01:00
{
2024-04-09 12:53:23 +02:00
public RentalProcess1StepBar ()
2021-11-07 19:42:59 +01:00
{
InitializeComponent ();
}
}
}