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

namespace Common.Model
{
public class SmsParameters
{
public string userId { get; set; }
public string scheduleType { get; set; }
public string subject { get; set; }
public string message { get; set; }
public string callBackUrl { get; set; }
public string todayDate { get; set; }
public string sendDate { get; set; }
public string mobileNumber { get; set; }
public string receiverId { get; set; }
}
}