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