mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
14 lines
543 B
C#
14 lines
543 B
C#
![]() |
namespace ModernKeePass.Domain.Enums
|
|||
|
{
|
|||
|
public 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);
|
|||
|
}
|
|||
|
}
|