State of OMG-LEGION prior to merge
This commit is contained in:
30
PartSource.Data/Nexpart/App.cs
Normal file
30
PartSource.Data/Nexpart/App.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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/PartSelectServ/2011-07-21")]
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user