31 lines
678 B
Plaintext
31 lines
678 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 MetaDataXMLClass
|
|
{
|
|
[XmlAttribute]
|
|
public string TestObject { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string SetupName { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string PropName { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string PropValue { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string Optional { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string Version { get; set; }
|
|
}
|
|
}
|