Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/IEntityVm.cs
Geoffroy BONNEVILLE 90c592d7ee Lots of bug corrections
WIP - still lots left
2020-03-31 19:19:02 +02:00

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; }
}
}