mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 07:30:15 -04:00
13 lines
325 B
C#
13 lines
325 B
C#
using ModernKeePass.Domain.Enums;
|
|
|
|
namespace ModernKeePass.Application.Common.Interfaces
|
|
{
|
|
public interface IEntityVm
|
|
{
|
|
string Id { get; set; }
|
|
string Title { get; set; }
|
|
Icon Icon { get; set; }
|
|
string ParentGroupId { get; set; }
|
|
string ParentGroupName { get; set; }
|
|
}
|
|
} |