using System; using System.Collections.Generic; using System.Drawing; using ModernKeePass.Domain.Enums; namespace ModernKeePass.Domain.Entities { public class EntryEntity: BaseEntity { public IEnumerable Fields { get; set; } = new List(); public IEnumerable History { get; set; } = new List(); public Dictionary Attachments { get; set; } = new Dictionary(); public DateTimeOffset ExpirationDate { get; set; } public Icon Icon { get; set; } public Color ForegroundColor { get; set; } public Color BackgroundColor { get; set; } public bool HasExpirationDate { get; set; } } }