bitwarden-android/src/App/Pages/SyncPage.cs

15 lines
221 B
C#
Raw Normal View History

2016-05-03 00:50:16 +03:00
using System;
using Xamarin.Forms;
namespace Bit.App.Pages
{
public class SyncPage : ContentPage
{
public SyncPage()
{
Title = "Sync";
Content = null;
}
}
}