HamBook – Blame information for rev 54

Subversion Repositories:
Rev:
Rev Author Line No. Line
54 office 1 using System.Windows.Forms;
15 office 2  
3 namespace HamBook
4 {
5 public class DataGridViewRowProgressSuccess<T> : DataGridViewRowProgress
6 {
7 public T Data { get; }
8  
9 #region Constructors, Destructors and Finalizers
54 office 10  
15 office 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 }
54 office 19  
15 office 20 #endregion
21 }
22 }