HamBook – Diff between revs 54 and 56
?pathlinks?
Rev 54 | Rev 56 | |||
---|---|---|---|---|
Line 1... | Line 1... | |||
1 | using System; |
1 | using System; |
|
- | 2 | using System.Collections.Generic; |
||
2 | using System.Reflection; |
3 | using System.Reflection; |
|
3 | using System.Xml.Serialization; |
4 | using System.Xml.Serialization; |
|
Line 4... | Line 5... | |||
4 | |
5 | |
|
5 | namespace HamBook.Radios.Generic |
6 | namespace HamBook.Radios.Generic |
|
Line 10... | Line 11... | |||
10 | { |
11 | { |
|
11 | [XmlIgnore] public abstract char Code { get; set; } |
12 | [XmlIgnore] public abstract char Code { get; set; } |
|
Line 12... | Line 13... | |||
12 | |
13 | |
|
Line -... | Line 14... | |||
- | 14 | [XmlIgnore] public abstract string Name { get; set; } |
||
- | 15 | |
||
- | 16 | [XmlIgnore] public abstract IEnumerable<string> Names { get; } |
||
- | 17 | |
||
13 | [XmlIgnore] public abstract string Name { get; set; } |
18 | [XmlIgnore] public abstract IEnumerable<char> Codes { get; } |
|
Line 14... | Line 19... | |||
14 | |
19 | |
|
Line 15... | Line 20... | |||
15 | public abstract string CodeToName(char code); |
20 | public abstract string CodeToName(char code); |