HamBook – Rev 56
?pathlinks?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace HamBook
{
[XmlRoot(ElementName = "RadioMenuItem")]
public class RadioMenuItem
{
[XmlElement(ElementName = "Index")]
public int Index { get; set; }
[XmlElement(ElementName = "Value")]
public string Value { get; set; }
}
}