init
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user