using System; using Android.Graphics.Drawables; using KeePassLib; namespace keepass2android { /// /// Interface for popup menu items in EntryActivity /// internal interface IPopupMenuItem { Drawable Icon { get; } String Text { get; } void HandleClick(); } }