using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; using PartSource.Data.Nexpart.Interfaces; namespace PartSource.Data.Nexpart { [XmlType(AnonymousType = true, Namespace = "http://whisolutions.com/PartSelectService-v1")] public class ApplicationSearchResponse : IResponseElement { [XmlElement] public PSResponseHeader PSResponseHeader { get; set; } [XmlElement(ElementName = nameof(Apps))] public Apps ResponseBody { get; set; } } }