AlertManager.cs 272 B

1234567891011121314
  1. using Abp.Dependency;
  2. namespace Abp.Web.Mvc.Alerts
  3. {
  4. public class AlertManager : IAlertManager, IPerWebRequestDependency
  5. {
  6. public AlertList Alerts { get; }
  7. public AlertManager()
  8. {
  9. Alerts = new AlertList();
  10. }
  11. }
  12. }