mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
12 lines
371 B
C#
12 lines
371 B
C#
using System.Collections.Generic;
|
|
using ModernKeePass.Domain.Enums;
|
|
|
|
namespace ModernKeePass.Domain.Entities
|
|
{
|
|
public class GroupEntity : BaseEntity
|
|
{
|
|
public List<GroupEntity> Groups { get; set; } = new List<GroupEntity>();
|
|
public List<EntryEntity> Entries { get; set; } = new List<EntryEntity>();
|
|
public Icon Icon { get; set; }
|
|
}
|
|
} |