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.

15 lines
492 B

  1. namespace Swift.API.Common.SMS
  2. {
  3. public class SMSRequestModel
  4. {
  5. public string ProcessId { get; set; }
  6. public string UserName { get; set; }
  7. public string RequestedBy { get; set; }
  8. public string MobileNumber { get; set; }
  9. public string SMSBody { get; set; }
  10. public string method { get; set; }
  11. public string ProviderId { get; set; }
  12. public string ControlNo { get; set; }
  13. public string MTID { get; set; }
  14. }
  15. }