mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-02 02:13:48 -05:00
88 lines
2.0 KiB
C#
88 lines
2.0 KiB
C#
// <auto-generated />
|
|
// This file is auto-generated from core/models/src/vault/FieldKey.ts
|
|
// Do not edit this file directly. Run 'npm run generate:models' to regenerate.
|
|
|
|
namespace AliasClientDb.Models;
|
|
|
|
/// <summary>
|
|
/// System field keys for the field-based data model.
|
|
/// These keys map to FieldDefinition.FieldKey values.
|
|
/// </summary>
|
|
public static class FieldKey
|
|
{
|
|
/// <summary>
|
|
/// Type: Text
|
|
/// </summary>
|
|
public const string LoginUsername = "login.username";
|
|
|
|
/// <summary>
|
|
/// Type: Password
|
|
/// </summary>
|
|
public const string LoginPassword = "login.password";
|
|
|
|
/// <summary>
|
|
/// Type: Email
|
|
/// </summary>
|
|
public const string LoginEmail = "login.email";
|
|
|
|
/// <summary>
|
|
/// Type: URL
|
|
/// </summary>
|
|
public const string LoginUrl = "login.url";
|
|
|
|
/// <summary>
|
|
/// Type: Text
|
|
/// </summary>
|
|
public const string CardNumber = "card.number";
|
|
|
|
/// <summary>
|
|
/// Type: Text
|
|
/// </summary>
|
|
public const string CardCardholderName = "card.cardholder_name";
|
|
|
|
/// <summary>
|
|
/// Type: Text
|
|
/// </summary>
|
|
public const string CardExpiryMonth = "card.expiry_month";
|
|
|
|
/// <summary>
|
|
/// Type: Text
|
|
/// </summary>
|
|
public const string CardExpiryYear = "card.expiry_year";
|
|
|
|
/// <summary>
|
|
/// Type: Password
|
|
/// </summary>
|
|
public const string CardCvv = "card.cvv";
|
|
|
|
/// <summary>
|
|
/// Type: Password
|
|
/// </summary>
|
|
public const string CardPin = "card.pin";
|
|
|
|
/// <summary>
|
|
/// Type: Text
|
|
/// </summary>
|
|
public const string AliasFirstName = "alias.first_name";
|
|
|
|
/// <summary>
|
|
/// Type: Text
|
|
/// </summary>
|
|
public const string AliasLastName = "alias.last_name";
|
|
|
|
/// <summary>
|
|
/// Type: Text
|
|
/// </summary>
|
|
public const string AliasGender = "alias.gender";
|
|
|
|
/// <summary>
|
|
/// Type: Date
|
|
/// </summary>
|
|
public const string AliasBirthdate = "alias.birthdate";
|
|
|
|
/// <summary>
|
|
/// Type: TextArea
|
|
/// </summary>
|
|
public const string NotesContent = "notes.content";
|
|
}
|