Winify – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
4 office 1 using System;
2 using Winify.Connections;
3  
4 namespace Winify
5 {
6 public class ServersUpdatedEventArgs : EventArgs
7 {
8 #region Public Enums, Properties and Fields
9  
10 public Servers Servers { get; }
11  
12 #endregion
13  
14 #region Constructors, Destructors and Finalizers
15  
16 public ServersUpdatedEventArgs(Servers servers)
17 {
18 Servers = servers;
19 }
20  
21 #endregion
22 }
23 }