mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
WIP toast notifications
WIP layout and color changes
This commit is contained in:
16
ModernKeePass/Interfaces/IPwEntity.cs
Normal file
16
ModernKeePass/Interfaces/IPwEntity.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user