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