Files
modernkeepass/ModernKeePass.Domain/Enums/EntryFieldName.cs

16 lines
692 B
C#
Raw Permalink Normal View History

2020-03-26 15:38:29 +01:00
namespace ModernKeePass.Domain.Enums
{
2020-04-08 15:27:40 +02:00
public static class EntryFieldName
2020-03-26 15:38:29 +01:00
{
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);
2020-04-14 17:49:29 +02:00
public const string BackgroundColor = nameof(BackgroundColor);
public const string ForegroundColor = nameof(ForegroundColor);
2020-03-26 15:38:29 +01:00
}
}