Webiant Logo Webiant Logo
  1. No results found.

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

ProductVideo.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a product video mapping
/// 
public partial class ProductVideo : BaseEntity
{
    /// 
    /// Gets or sets the product identifier
    /// 
    public int ProductId { get; set; }

    /// 
    /// Gets or sets the video identifier
    /// 
    public int VideoId { get; set; }

    /// 
    /// Gets or sets the display order
    /// 
    public int DisplayOrder { get; set; }
}