Initial commit
This commit is contained in:
15
PartSource.Data/Nexpart/MenuNodesLookupResponse.cs
Normal file
15
PartSource.Data/Nexpart/MenuNodesLookupResponse.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using PartSource.Data.Nexpart.Interfaces;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace PartSource.Data.Nexpart
|
||||
{
|
||||
[XmlType(AnonymousType = true, Namespace = "http://whisolutions.com/PartSelectService-v1")]
|
||||
public class MenuNodesLookupResponse : IResponseElement<MenuNodes>
|
||||
{
|
||||
[XmlElement]
|
||||
public PSResponseHeader PSResponseHeader { get; set; }
|
||||
|
||||
[XmlElement(ElementName = "MenuNodes")]
|
||||
public MenuNodes ResponseBody { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user