You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
756 B

  1. using Common.Models.Enums;
  2. using Common.Models.RequestResponse;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Linq;
  7. using System.Net.Mail;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace Common.Models.Notification
  11. {
  12. public class SendNotificationRequest : CommonRequest
  13. {
  14. public string NotificationTypeId { get; set; }
  15. public bool IsBulkNotification { get; set; }
  16. public string ControlNo { get; set; }
  17. public List<RecipientViewModel> Recipients { get; set; }
  18. // public NotificationDTO BroadCastNotification { get; set; }
  19. public NotifyTemplate Template { get; set; }
  20. public string Language { get; set; }
  21. }
  22. }