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
796 B

11 months ago
11 months ago
11 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CustomerOnlineV2.Common.Models.Notification
  7. {
  8. public class SendNotificationRequest: CommonRequest
  9. {
  10. public string NotificationTypeId { get; set; }
  11. public bool IsBulkNotification { get; set; }
  12. public string ControlNo { get; set; }
  13. public List<RecipientViewModel> Recipients { get; set; }
  14. public NotifyTemplate Template { get; set; }
  15. public string Language { get; set; }
  16. }
  17. public class CommonRequest
  18. {
  19. public string ProcessId { get; set; }
  20. public string UserName { get; set; }
  21. public string ProviderId { get; set; }
  22. public string SessionId { get; set; }
  23. }
  24. }