Webiant Logo Webiant Logo
  1. No results found.

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

LicenseCheckModel.cs

using Newtonsoft.Json;
using Nop.Web.Framework.Models;

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

/// 
/// Represents a license check model
/// 
public partial record LicenseCheckModel : BaseNopModel
{
    #region Properties

    [JsonProperty(PropertyName = "display_warning")]
    public bool? DisplayWarning { get; set; }

    [JsonProperty(PropertyName = "block_pages")]
    public bool? BlockPages { get; set; }

    [JsonProperty(PropertyName = "warning_text")]
    public string WarningText { get; set; }

    #endregion
}