Webiant Logo Webiant Logo
  1. No results found.

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

Language.cs

using Nop.Core.Domain.Stores;

namespace Nop.Core.Domain.Localization;

/// 
/// Represents a language
/// 
public partial class Language : BaseEntity, IStoreMappingSupported
{
    /// 
    /// Gets or sets the name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets the language culture
    /// 
    public string LanguageCulture { get; set; }

    /// 
    /// Gets or sets the unique SEO code
    /// 
    public string UniqueSeoCode { get; set; }

    /// 
    /// Gets or sets the flag image file name
    /// 
    public string FlagImageFileName { get; set; }

    /// 
    /// Gets or sets a value indicating whether the language supports "Right-to-left"
    /// 
    public bool Rtl { get; set; }

    /// 
    /// Gets or sets a value indicating whether the entity is limited/restricted to certain stores
    /// 
    public bool LimitedToStores { get; set; }

    /// 
    /// Gets or sets the identifier of the default currency for this language; 0 is set when we use the default currency display order
    /// 
    public int DefaultCurrencyId { get; set; }

    /// 
    /// Gets or sets a value indicating whether the language is published
    /// 
    public bool Published { get; set; }

    /// 
    /// Gets or sets the display order
    /// 
    public int DisplayOrder { get; set; }
}