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.
 
 

23 lines
591 B

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