Files
components/LiteCharms.Features/Shop/Notifications/Events/ProcessEmailNotificationsEvent.cs
T
2026-05-13 20:06:24 +02:00

15 lines
480 B
C#

using LiteCharms.Features.Abstractions;
namespace LiteCharms.Features.Notifications.Events;
public class ProcessEmailNotificationsEvent : EventBase, IEvent
{
public string Name { get; set; } = nameof(ProcessEmailNotificationsEvent);
public int MaxRecords { get; set; }
private ProcessEmailNotificationsEvent(int maxRecords = 1000) => MaxRecords = maxRecords;
public static ProcessEmailNotificationsEvent Create(int maxRecords = 1000) => new(maxRecords);
}