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; } }