bitwarden-android/src/App/Pages/Accounts/HomePage.xaml.cs

19 lines
336 B
C#
Raw Normal View History

2019-03-28 03:12:44 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
2019-03-29 00:10:10 +03:00
using Xamarin.Forms.Xaml;
2019-03-28 03:12:44 +03:00
2019-03-29 00:10:10 +03:00
namespace Bit.App.Pages
2019-03-28 03:12:44 +03:00
{
2019-03-29 00:10:10 +03:00
public partial class HomePage : ContentPage
2019-03-28 03:12:44 +03:00
{
2019-03-29 00:10:10 +03:00
public HomePage()
2019-03-28 03:12:44 +03:00
{
InitializeComponent();
}
}
}