31 lines
949 B
C#
31 lines
949 B
C#
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Plugin.Widgets.ACAgeVerification.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; }
|
|
} |