Files
Partsource/PartSource.Data/Nexpart/SubModelSearchResponse.cs
2023-09-13 06:34:53 -04:00

19 lines
548 B
C#

using PartSource.Data.Nexpart.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
namespace PartSource.Data.Nexpart
{
[XmlType(AnonymousType = true, Namespace = "http://whisolutions.com/pss/common/model/parts")]
public class SubModelSearchResponse : IResponseElement<SubModels>
{
[XmlElement]
public PSResponseHeader PSResponseHeader { get; set; }
[XmlElement(ElementName = "SubModels")]
public SubModels ResponseBody { get; set; }
}
}