mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
15 lines
401 B
C#
15 lines
401 B
C#
using System.Collections.Generic;
|
|
using ModernKeePass.Application.Group.Models;
|
|
using ModernKeePass.Domain.Enums;
|
|
|
|
namespace ModernKeePass.Application.Common.Interfaces
|
|
{
|
|
public interface IEntityVm
|
|
{
|
|
string Id { get; set; }
|
|
string Title { get; set; }
|
|
Icon Icon { get; set; }
|
|
List<GroupVm> Breadcrumb { get; }
|
|
GroupVm ParentGroup { get; set; }
|
|
}
|
|
} |