Webiant Logo Webiant Logo
  1. No results found.

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

TranslationModel.cs

namespace Nop.Web.Framework.Models.Translation;

/// 
/// Represents translation model
/// 
public partial record TranslationModel : BaseNopModel
{
    /// 
    /// Gets or sets the translations
    /// 
    public List Translations { get; set; } = new();

    /// 
    /// Gets or sets the value that indicates whether error(s) occurred during translation
    /// 
    public bool HasErrors { get; set; }
}