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 PictureModel : BaseNopEntityModel
{
public string ImageUrl { get; set; }
public string ThumbImageUrl { get; set; }
public string FullSizeImageUrl { get; set; }
public string Title { get; set; }
public string AlternateText { get; set; }
}