Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/IEntityVm.cs

15 lines
403 B
C#
Raw Normal View History

using System.Collections.Generic;
using ModernKeePass.Domain.Enums;
namespace ModernKeePass.Application.Common.Interfaces
{
public interface IEntityVm
{
string Id { get; set; }
string Title { get; set; }
Icon Icon { get; set; }
2020-04-01 19:37:30 +02:00
List<IEntityVm> Breadcrumb { get; }
string ParentGroupId { get; set; }
string ParentGroupName { get; set; }
}
}