keepass2android/src/MasterKeePlugin/AddMasterKeeActivity.cs

26 lines
445 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace MasterKeePlugin
{
//TODO remove?
[Activity(Label = "@string/AddMkEntry")]
public class AddMasterKeeActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
}
}
}