Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/IEntityVm.cs
Geoffroy BONNEVILLE 009382ea03 Cleanup code
2020-04-08 15:27:40 +02:00

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