mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
20 lines
347 B
C#
20 lines
347 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Reflection.Emit;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Views
|
|||
|
{
|
|||
|
public class VaultEditSitePage : ContentPage
|
|||
|
{
|
|||
|
public VaultEditSitePage()
|
|||
|
{
|
|||
|
Title = "Edit Site";
|
|||
|
Content = null;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|