Winify – Blame information for rev

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