31 lines
752 B
C#
31 lines
752 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PartSource.Data.Nexpart
|
|
{
|
|
[XmlType(AnonymousType = true, Namespace = "http://whisolutions.com/pss/common/helper/parts")]
|
|
public class App
|
|
{
|
|
[XmlElement]
|
|
[JsonProperty("lineCode")]
|
|
public string MfrCode { get; set; }
|
|
|
|
[XmlElement]
|
|
[JsonProperty("description")]
|
|
public string MfrLabel { get; set; }
|
|
|
|
[XmlElement]
|
|
[JsonProperty("position")]
|
|
public string Position { get; set; }
|
|
|
|
[XmlElement]
|
|
[JsonProperty("partNumber")]
|
|
public string Part { get; set; }
|
|
}
|
|
}
|