HamBook – Blame information for rev 26

Subversion Repositories:
Rev:
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")]
26 office 12 public class MemoryChannelIndexed
16 office 13 {
14 public int Index { get; set; }
15 public MemoryChannel MemoryChannel { get; set; }
16  
26 office 17 public MemoryChannelIndexed()
16 office 18 {
19 }
20  
26 office 21 public MemoryChannelIndexed(int index, MemoryChannel memoryChannel) : this()
16 office 22 {
23 Index = index;
24 MemoryChannel = memoryChannel;
25 }
26 }
27 }