22 lines
820 B
C#
22 lines
820 B
C#
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/pss/common/model/parts")]
|
|
public class ApplicationSearchResponse : IResponseElement<object>
|
|
{
|
|
[XmlElement]
|
|
public PSResponseHeader PSResponseHeader { get; set; }
|
|
|
|
[XmlElement(ElementName = nameof(Apps), Namespace = "http://whisolutions.com/pss/common/model/parts", Type = typeof(Apps))]
|
|
[XmlElement(ElementName = nameof(Questions), Namespace = "http://whisolutions.com/pss/common/model/parts", Type = typeof(Questions))]
|
|
public object ResponseBody { get; set; }
|
|
}
|
|
}
|