mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
14 lines
370 B
C#
14 lines
370 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace ModernKeePass.Domain.Entities
|
|
{
|
|
public class BaseEntity
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public Color ForegroundColor { get; set; }
|
|
public Color BackgroundColor { get; set; }
|
|
public DateTimeOffset LastModificationDate { get; set; }
|
|
}
|
|
} |