mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 07:30:15 -04:00
14 lines
550 B
C#
14 lines
550 B
C#
namespace ModernKeePass.Domain.Enums
|
|
{
|
|
public static class EntryFieldName
|
|
{
|
|
public const string Title = nameof(Title);
|
|
public const string UserName = nameof(UserName);
|
|
public const string Password = nameof(Password);
|
|
public const string Url = nameof(Url);
|
|
public const string Notes = nameof(Notes);
|
|
public const string Icon = nameof(Icon);
|
|
public const string ExpirationDate = nameof(ExpirationDate);
|
|
public const string HasExpirationDate = nameof(HasExpirationDate);
|
|
}
|
|
} |