Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ProductVideoModel.cs

using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;

namespace Nop.Web.Areas.Admin.Models.Catalog;

/// 
/// Represents a product video model
/// 
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
}