Webiant Logo Webiant Logo
  1. No results found.

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

TranslatedModel.cs

namespace Nop.Web.Framework.Models.Translation;

/// 
/// Represents translated model
/// 
public partial record TranslatedModel : BaseNopModel
{
    /// 
    /// Gets or sets the input name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets the translated value
    /// 
    public string Value { get; set; }

    /// 
    /// Gets or sets the origin value
    /// 
    public string OriginValue { get; set; }

    /// 
    /// Gets or sets the language code
    /// 
    public string Language { get; set; }

    /// 
    /// Gets or sets the origin language code
    /// 
    public string OriginLanguage { get; set; }
}