Files
DP44/Common/DTS.CommonCore/.svn/pristine/86/86160fa255aaa2bb601b03f6ba9f967f6dcbdf29.svn-base

22 lines
444 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}