ApptaskCompletedNotify.cs 232 B

12345678910
  1. using MediatR;
  2. namespace Hotline.BatchTask.Notifications;
  3. public class ApptaskCompletedNotify : ApptaskExecutedNotify, INotification
  4. {
  5. public ApptaskCompletedNotify(ApptaskItem apptaskItem) : base(apptaskItem)
  6. {
  7. }
  8. }