//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using System.Data.Common;
namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
{
///
/// Represents a summary of information about a result without returning any cells of the results
///
public class ResultSetSummary
{
///
/// The ID of the result set within the batch results
///
public int Id { get; set; }
///
/// The number of rows that was returned with the resultset
///
public int RowCount { get; set; }
///
/// Details about the columns that are provided as solutions
///
public DbColumn[] ColumnInfo { get; set; }
}
}