//----------------------------------------------------------------------- // // Copyright (c) aliasvault. All rights reserved. // Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.Client.Services.JsInterop.Models; /// /// Represents a language option for identity generation. /// public sealed class LanguageOption { /// /// Gets or sets the language code (e.g., "en", "nl", "de"). /// public string Value { get; set; } = string.Empty; /// /// Gets or sets the display label in the native language (e.g., "English", "Nederlands", "Deutsch"). /// public string Label { get; set; } = string.Empty; /// /// Gets or sets the flag emoji for the language (e.g., "🇬🇧", "🇳🇱", "🇩🇪"). /// public string Flag { get; set; } = string.Empty; }