22 lines
444 B
Plaintext
22 lines
444 B
Plaintext
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using System.Xml.Serialization;
|
||
|
|
|
||
|
|
namespace DTS.Common.XMLUtils
|
||
|
|
{
|
||
|
|
public class HardwareListXMLClass
|
||
|
|
{
|
||
|
|
public HardwareListXMLClass()
|
||
|
|
{
|
||
|
|
Hardware = new List<string>();
|
||
|
|
}
|
||
|
|
|
||
|
|
[XmlElement("Hardware")]
|
||
|
|
|
||
|
|
public List<string> Hardware { get; set; }
|
||
|
|
}
|
||
|
|
}
|