mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
1st working version in clean arch
WIP Parent group mapping issues
This commit is contained in:
@@ -1,20 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Input;
|
||||
using ModernKeePass.ViewModels;
|
||||
using Windows.UI.Xaml.Controls;
|
||||
using ModernKeePass.Application.Group.Models;
|
||||
|
||||
namespace ModernKeePass.Interfaces
|
||||
{
|
||||
public interface IVmEntity
|
||||
{
|
||||
GroupVm ParentGroup { get; }
|
||||
GroupVm PreviousGroup { get; }
|
||||
int Icon { get; }
|
||||
Symbol Icon { get; }
|
||||
string Id { get; }
|
||||
string Title { get; set; }
|
||||
IEnumerable<IVmEntity> BreadCrumb { get; }
|
||||
IEnumerable<GroupVm> BreadCrumb { get; }
|
||||
bool IsEditMode { get; }
|
||||
bool IsRecycleOnDelete { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Save changes to Model
|
||||
|
Reference in New Issue
Block a user