HamBook – Blame information for rev 15

Subversion Repositories:
Rev:
Rev Author Line No. Line
15 office 1 using HamBook;
2 using System.Windows.Forms;
3  
4 namespace HamBook
5 {
6 public class DataGridViewRowProgressSuccess<T> : DataGridViewRowProgress
7 {
8 public T Data { get; }
9  
10 #region Constructors, Destructors and Finalizers
11 public DataGridViewRowProgressSuccess(DataGridViewRow row, int index) : base(row, index, true)
12 {
13 }
14  
15 public DataGridViewRowProgressSuccess(DataGridViewRow row, int index, T data) : this(row, index)
16 {
17 Data = data;
18 }
19 #endregion
20 }
21 }