Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Media;
public partial record VideoModel : BaseNopModel
{
public string VideoUrl { get; set; }
public string Allow { get; set; }
public int Width { get; set; }
public int Height { get; set; }
}