HamBook – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | using System; |
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace HamBook.Radios |
||
8 | { |
||
9 | public class RadioAttribute : Attribute |
||
10 | { |
||
11 | public string Radio { get; set; } |
||
12 | public RadioAttribute(string radio) |
||
13 | { |
||
14 | Radio = radio; |
||
15 | } |
||
16 | } |
||
17 | } |