HamBook – Diff between revs 1 and 54

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 54
Line 1... Line 1...
1 using System; 1 using System;
2 using System.Collections.Generic; -  
3 using System.Linq; -  
4 using System.Text; -  
5 using System.Threading.Tasks; -  
Line 6... Line 2...
6   2  
7 namespace HamBook.Radios 3 namespace HamBook.Radios
8 { 4 {
9 public class RadioAttribute : Attribute 5 public class RadioAttribute : Attribute
10 { -  
11 public string Radio { get; set; } 6 {
12 public RadioAttribute(string radio) 7 public RadioAttribute(string radio)
13 { 8 {
14 Radio = radio; 9 Radio = radio;
-   10 }
-   11  
15 } 12 public string Radio { get; set; }
16 } 13 }
17 } 14 }