mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
15 lines
221 B
C#
15 lines
221 B
C#
|
using System;
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Pages
|
|||
|
{
|
|||
|
public class SyncPage : ContentPage
|
|||
|
{
|
|||
|
public SyncPage()
|
|||
|
{
|
|||
|
Title = "Sync";
|
|||
|
Content = null;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|