mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
12 lines
257 B
C#
12 lines
257 B
C#
using ModernKeePass.Domain.Enums;
|
|
|
|
namespace ModernKeePass.Application.Common.Models
|
|
{
|
|
public class BreadcrumbItem
|
|
{
|
|
public string Path { get; set; }
|
|
public string Name { get; set; }
|
|
public Icon Icon { get; set; }
|
|
|
|
}
|
|
} |