Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

LocalizedProperty.cs

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; }
}