HamBook – Blame information for rev 54
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
54 | office | 1 | using System.Xml.Serialization; |
2 | using HamBook.Radios.Generic; |
||
16 | office | 3 | |
4 | namespace HamBook |
||
5 | { |
||
54 | office | 6 | [XmlRoot(Namespace = "urn:hambook-memorychannelorganizerbank-schema", |
7 | ElementName = "ArrayOfMemoryChannelOrganizerBank")] |
||
48 | office | 8 | [XmlInclude(typeof(Radios.Yaesu.FT_891.MemoryChannel))] |
26 | office | 9 | public class MemoryChannelIndexed |
16 | office | 10 | { |
54 | office | 11 | public MemoryChannelIndexed() |
12 | { |
||
16 | office | 13 | } |
14 | |||
48 | office | 15 | public MemoryChannelIndexed(int index, MemoryChannel memoryChannel) : this() |
16 | office | 16 | { |
17 | Index = index; |
||
18 | MemoryChannel = memoryChannel; |
||
19 | } |
||
54 | office | 20 | |
21 | public int Index { get; set; } |
||
22 | public MemoryChannel MemoryChannel { get; set; } |
||
16 | office | 23 | } |
54 | office | 24 | } |