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;

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

    public SystemWarningCreatedEvent()
    {
        SystemWarnings = new List();
    }

    #endregion

    #region Properties

    /// 
    /// Gets a list of warnings
    /// 
    public IList SystemWarnings { get; }

    #endregion
}