mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00

Auto rename additional field when it matches standard Treated all fields as new Field class Added the Is Protected property
12 lines
290 B
C#
12 lines
290 B
C#
using ModernKeePass.Domain.Enums;
|
|
|
|
namespace ModernKeePass.Application.Common.Interfaces
|
|
{
|
|
public interface IEntityVm
|
|
{
|
|
string Id { get; set; }
|
|
Icon Icon { get; set; }
|
|
string ParentGroupId { get; set; }
|
|
string ParentGroupName { get; set; }
|
|
}
|
|
} |