Webiant Logo Webiant Logo
  1. No results found.

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

SystemWarningCreatedEvent.cs

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

/// <summary>
/// Represents an event that occurs when system warnings are creating
/// </summary>
public partial class SystemWarningCreatedEvent
{
    #region Ctor

    public SystemWarningCreatedEvent()
    {
        SystemWarnings = new List<SystemWarningModel>();
    }

    #endregion

    #region Properties

    /// <summary>
    /// Gets a list of warnings
    /// </summary>
    public IList<SystemWarningModel> SystemWarnings { get; }

    #endregion
}