Korero – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace Korero.Chat
4 {
5 public class NewConversationSelectedEventArgs : EventArgs
6 {
7 #region Public Enums, Properties and Fields
8  
9 public Conversation Conversation { get; set; }
10  
11 #endregion
12  
13 #region Constructors, Destructors and Finalizers
14  
15 public NewConversationSelectedEventArgs()
16 {
17 }
18  
19 public NewConversationSelectedEventArgs(Conversation conversation) : this()
20 {
21 Conversation = conversation;
22 }
23  
24 #endregion
25 }
26 }