mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
New Save button in the AppBar EntryPage now uses the same AppBar as GroupPage (but not shared...) Some new Symbol mappings
19 lines
423 B
C#
19 lines
423 B
C#
using Windows.UI.Xaml.Controls;
|
|
using ModernKeePass.ViewModels;
|
|
|
|
namespace ModernKeePass.Interfaces
|
|
{
|
|
public interface IPwEntity
|
|
{
|
|
GroupVm ParentGroup { get; }
|
|
Symbol IconSymbol { get; }
|
|
string Id { get; }
|
|
string Name { get; set; }
|
|
bool IsEditMode { get; }
|
|
|
|
void CommitDelete();
|
|
void UndoDelete();
|
|
void Save();
|
|
void MarkForDelete();
|
|
}
|
|
} |