14 lines
390 B
C#
14 lines
390 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PartSource.Data.Nexpart
|
|
{
|
|
[XmlType(AnonymousType = true, Namespace = "http://whisolutions.com/PartSelectServ/2011-07-21")]
|
|
public class Apps
|
|
{
|
|
[XmlElement(Namespace = "http://whisolutions.com/PartSelectServ/2011-07-21")]
|
|
[JsonProperty("wipers")]
|
|
public App[] App { get; set; }
|
|
}
|
|
}
|