Webiant Logo Webiant Logo
  1. No results found.

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

PublicInfoModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Plugin.Widgets.NivoSlider.Models;

public record PublicInfoModel : BaseNopModel
{
    public string Picture1Url { get; set; }
    public string Text1 { get; set; }
    public string Link1 { get; set; }
    public string AltText1 { get; set; }

    public string Picture2Url { get; set; }
    public string Text2 { get; set; }
    public string Link2 { get; set; }
    public string AltText2 { get; set; }

    public string Picture3Url { get; set; }
    public string Text3 { get; set; }
    public string Link3 { get; set; }
    public string AltText3 { get; set; }

    public string Picture4Url { get; set; }
    public string Text4 { get; set; }
    public string Link4 { get; set; }
    public string AltText4 { get; set; }

    public string Picture5Url { get; set; }
    public string Text5 { get; set; }
    public string Link5 { get; set; }
    public string AltText5 { get; set; }
}