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