using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace Business.BusinessLogic.SMSApiService { [XmlRoot(ElementName = "response")] public class SmsResponse { [XmlElement(ElementName = "credits")] public string Credits { get; set; } [XmlElement(ElementName = "credits_used")] public string Credits_used { get; set; } [XmlAttribute(AttributeName = "status")] public string Status { get; set; } [XmlAttribute(AttributeName = "id")] public string Id { get; set; } } }