20 lines
503 B
C#
20 lines
503 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace PartSource.Data.Nexpart
|
|
{
|
|
[XmlType(Namespace = "http://whisolutions.com/pss/common/model/parts")]
|
|
public class Questions
|
|
{
|
|
[XmlElement(Namespace = "http://whisolutions.com/pss/common/helper/parts")]
|
|
public Question[] Question { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public int NumApps { get; set; }
|
|
}
|
|
}
|