// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts { /// /// Class used for internally passing results from a cell around. /// public class DbCellValue { /// /// Display value for the cell, suitable to be passed back to the client /// public string DisplayValue { get; set; } /// /// The raw object for the cell, for use internally /// internal object RawObject { get; set; } } }