HamBook – Blame information for rev 56

Subversion Repositories:
Rev:
Rev Author Line No. Line
56 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using System.Xml.Serialization;
7  
8 namespace HamBook
9 {
10 [XmlRoot(ElementName = "RadioMenuItem")]
11 public class RadioMenuItem
12 {
13  
14 [XmlElement(ElementName = "Index")]
15 public int Index { get; set; }
16  
17 [XmlElement(ElementName = "Value")]
18 public string Value { get; set; }
19 }
20 }