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

32 lines
1.0 KiB
C#
Raw Normal View History

using System.Collections.Generic;
namespace ModernKeePass.Domain.Enums
2020-03-26 15:38:29 +01:00
{
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);
public static IEnumerable<string> StandardFieldNames = new[]
{
Title,
UserName,
Password,
Url,
Notes,
Icon,
ExpirationDate,
HasExpirationDate,
BackgroundColor,
ForegroundColor
};
2020-03-26 15:38:29 +01:00
}
}