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