Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Catalog;
/// <summary>
/// Represents a product video model
/// </summary>
public partial record ProductVideoModel : BaseNopEntityModel
{
#region Properties
public int ProductId { get; set; }
[NopResourceDisplayName("Admin.Catalog.Products.Multimedia.Videos.Fields.VideoUrl")]
public string VideoUrl { get; set; }
[NopResourceDisplayName("Admin.Catalog.Products.Multimedia.Videos.Fields.DisplayOrder")]
public int DisplayOrder { get; set; }
#endregion
}