Webiant Logo Webiant Logo
  1. No results found.

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

RenderPicture.cs

namespace Nop.Web.Framework.Models.DataTables;

/// 
/// Represents picture render for DataTables column
/// 
public partial class RenderPicture : IRender
{
    #region Ctor

    public RenderPicture(string srcPrefix = "", int width = 0)
    {
        SrcPrefix = srcPrefix;
        Width = width;
    }

    #endregion

    #region Properties

    /// 
    /// Gets or sets picture URL prefix
    /// 
    public string SrcPrefix { get; set; }

    /// 
    /// Gets or sets picture source
    /// 
    public string Src { get; set; }

    /// 
    /// Gets or sets picture width
    /// 
    public int Width { get; set; }

    #endregion
}