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

14 lines
359 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
string ParentGroupId { get; set; }
string ParentGroupName { get; set; }
}
}