32 lines
768 B
C#
32 lines
768 B
C#
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; }
|
|
} |