2020-05-12 17:14:30 +02:00
|
|
|
|
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);
|
2020-05-12 17:14:30 +02:00
|
|
|
|
|
|
|
|
|
public static IEnumerable<string> StandardFieldNames = new[]
|
|
|
|
|
{
|
|
|
|
|
Title,
|
|
|
|
|
UserName,
|
|
|
|
|
Password,
|
|
|
|
|
Url,
|
|
|
|
|
Notes,
|
|
|
|
|
Icon,
|
|
|
|
|
ExpirationDate,
|
|
|
|
|
HasExpirationDate,
|
|
|
|
|
BackgroundColor,
|
|
|
|
|
ForegroundColor
|
|
|
|
|
};
|
2020-03-26 15:38:29 +01:00
|
|
|
|
}
|
|
|
|
|
}
|