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

20 lines
370 B
C#
Raw Normal View History

2016-05-02 09:52:09 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection.Emit;
using System.Text;
using Xamarin.Forms;
2016-05-03 00:50:16 +03:00
namespace Bit.App.Pages
2016-05-02 09:52:09 +03:00
{
public class VaultEditSitePage : ContentPage
{
2016-05-07 05:29:03 +03:00
public VaultEditSitePage(string siteId)
2016-05-02 09:52:09 +03:00
{
2016-05-07 05:29:03 +03:00
Title = "Edit Site " + siteId;
2016-05-02 09:52:09 +03:00
Content = null;
}
}
}