Horizon – Blame information for rev 5

Subversion Repositories:
Rev:
Rev Author Line No. Line
5 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6  
7 namespace Horizon.Snapshots
8 {
9 public class CreateSnapshotProgress
10 {
11 #region Constructors, Destructors and Finalizers
12  
13 public CreateSnapshotProgress(string file, bool success)
14 {
15 Success = success;
16 File = file;
17 }
18  
19 #endregion
20  
21 #region Public Enums, Properties and Fields
22  
23 public bool Success { get; }
24  
25 public string File { get; }
26  
27 #endregion
28 }
29 }