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

14 lines
343 B
C#

10 months ago
using Newtonsoft.Json;
namespace DS.Module.SMS;
public class SendSmsResponse
{
[JsonProperty("RequestId")] public string RequestId { get; set; }
[JsonProperty("Message")] public string Message { get; set; }
[JsonProperty("BizId")] public string BizId { get; set; }
[JsonProperty("Code")] public string Code { get; set; }
}