using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Serialization; namespace Deltares.Dam.Data.DataPlugins.Configuration { public class DataAttribute { [XmlAttribute("Id")] public string AttributeId { get; set; } [XmlAttribute("Name")] public string AttributeName { get; set; } [XmlAttribute("DataSource")] public string DataSource { get; set; } public override string ToString() { return AttributeId + "|" + AttributeName + "|" + DataSource; } } }