Horizon – Blame information for rev 21

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Windows.Forms;
2  
3 namespace Horizon.Snapshots
4 {
5 public class DataGridViewRowProgress
6 {
7 #region Constructors, Destructors and Finalizers
8  
9 public DataGridViewRowProgress(DataGridViewRow row, int index, bool success)
10 {
11 Row = row;
12 Index = index;
13 Success = success;
14 }
15  
21 office 16 public DataGridViewRowProgress(bool success)
17 {
18 Success = success;
19 }
20  
1 office 21 #endregion
22  
23 #region Public Enums, Properties and Fields
24  
25 public DataGridViewRow Row { get; }
26  
27 public int Index { get; }
28  
29 public bool Success { get; }
30  
31 #endregion
32 }
33 }