using System; namespace Abp.Notifications { /// /// Arguments for . /// [Serializable] public class NotificationDistributionJobArgs { /// /// Notification Id. /// public Guid NotificationId { get; set; } /// /// Initializes a new instance of the class. /// public NotificationDistributionJobArgs(Guid notificationId) { NotificationId = notificationId; } } }