Horizon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.IO;
2  
3 namespace Horizon.Snapshots
4 {
5 public class FileSystemWatcherState
6 {
7 #region Constructors, Destructors and Finalizers
8  
9 public FileSystemWatcherState(FileSystemWatcher fileSystemWatcher)
10 {
11 FileSystemWatcher = fileSystemWatcher;
12 State = fileSystemWatcher.EnableRaisingEvents;
13 }
14  
15 #endregion
16  
17 #region Public Enums, Properties and Fields
18  
19 public FileSystemWatcher FileSystemWatcher { get; }
20  
21 public bool State { get; }
22  
23 #endregion
24 }
25 }