//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
using System.ComponentModel;
///
/// Represents an individual row in the .
///
public class DetailsViewPagerRow : DetailsViewRow, INonBindingContainer {
///
/// Initializes a new instance of the class.
///
public DetailsViewPagerRow(int rowIndex, DataControlRowType rowType, DataControlRowState rowState) : base(rowIndex, rowType, rowState) {
}
}
}