15 lines
428 B
Plaintext
15 lines
428 B
Plaintext
using System.Xml.Serialization;
|
|
|
|
namespace DTS.Common.Core.PluginLib
|
|
{
|
|
/// <summary>
|
|
/// Support class that stores data de-serialized from DatPro.Core.PluginLib.Config in App.Config configuration section
|
|
/// </summary>
|
|
[XmlRoot(ElementName = "DatPro.Core.PluginLib.Config")]
|
|
public class PluginConfigData
|
|
{
|
|
[XmlArrayItem("Folder")]
|
|
public string[] PluginFolders;
|
|
}
|
|
}
|