WingMan – Blame information for rev 36

Subversion Repositories:
Rev:
Rev Author Line No. Line
36 office 1 using ProtoBuf;
10 office 2  
14 office 3 namespace WingMan.Bindings
10 office 4 {
36 office 5 [ProtoContract]
10 office 6 public class ExecuteKeyBinding
7 {
8 public ExecuteKeyBinding()
9 {
10 }
11  
36 office 12 public ExecuteKeyBinding(string nick, string name) : this()
10 office 13 {
14 Nick = nick;
15 Name = name;
16 }
17  
36 office 18 [ProtoMember(1)] public string Nick { get; set; }
19  
20 [ProtoMember(2)] public string Name { get; set; }
10 office 21 }
36 office 22 }