Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Localization;
/// <summary>
/// Represents a localized property
/// </summary>
public partial class LocalizedProperty : BaseEntity
{
/// <summary>
/// Gets or sets the entity identifier
/// </summary>
public int EntityId { get; set; }
/// <summary>
/// Gets or sets the language identifier
/// </summary>
public int LanguageId { get; set; }
/// <summary>
/// Gets or sets the locale key group
/// </summary>
public string LocaleKeyGroup { get; set; }
/// <summary>
/// Gets or sets the locale key
/// </summary>
public string LocaleKey { get; set; }
/// <summary>
/// Gets or sets the locale value
/// </summary>
public string LocaleValue { get; set; }
}