mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-18 09:35:38 -05:00
WIP for QueryExecution, mostly complete
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
|
||||
{
|
||||
public class ResultSetSubset
|
||||
{
|
||||
public int RowCount { get; set; }
|
||||
public object[][] Rows { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user