Horizon – Blame information for rev 1

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  
16 #endregion
17  
18 #region Public Enums, Properties and Fields
19  
20 public DataGridViewRow Row { get; }
21  
22 public int Index { get; }
23  
24 public bool Success { get; }
25  
26 #endregion
27 }
28 }