Try your search with a different keyword or use * as a wildcard.
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; }
}