HamBook – Diff between revs 45 and 46

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 45 Rev 46
Line 7... Line 7...
7 using System.Xml.Serialization; 7 using System.Xml.Serialization;
Line 8... Line 8...
8   8  
9 namespace HamBook 9 namespace HamBook
10 { 10 {
11 [XmlRoot(Namespace = "urn:hambook-memorychannelorganizerbank-schema", ElementName = "ArrayOfMemoryChannelOrganizerBank")] -  
12 [XmlInclude(typeof(Radios.Yaesu.FT_891.MemoryRadioMode))] 11 [XmlRoot(Namespace = "urn:hambook-memorychannelorganizerbank-schema", ElementName = "ArrayOfMemoryChannelOrganizerBank")]
13 public class MemoryChannelIndexed 12 public class MemoryChannelIndexed
14 { 13 {
15 public int Index { get; set; } 14 public int Index { get; set; }
Line 16... Line 15...
16 public MemoryChannel MemoryChannel { get; set; } 15 public Radios.Yaesu.FT_891.MemoryChannel MemoryChannel { get; set; }
17   16  
18 public MemoryChannelIndexed() 17 public MemoryChannelIndexed()
Line 19... Line 18...
19 { 18 {
20 } 19 }
21   20  
22 public MemoryChannelIndexed(int index, MemoryChannel memoryChannel) : this() 21 public MemoryChannelIndexed(int index, Radios.Yaesu.FT_891.MemoryChannel memoryChannel) : this()
23 { 22 {
24 Index = index; 23 Index = index;