mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
17 lines
372 B
C#
17 lines
372 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();
|
|
}
|
|
} |