| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | using System.Collections.Generic; |
| | | 9 | | using Azure.Core; |
| | | 10 | | |
| | | 11 | | namespace Azure.Data.Tables.Models |
| | | 12 | | { |
| | | 13 | | /// <summary> The properties for the table query response. </summary> |
| | | 14 | | internal partial class TableQueryResponse |
| | | 15 | | { |
| | | 16 | | /// <summary> Initializes a new instance of TableQueryResponse. </summary> |
| | 0 | 17 | | internal TableQueryResponse() |
| | | 18 | | { |
| | 0 | 19 | | Value = new ChangeTrackingList<TableItem>(); |
| | 0 | 20 | | } |
| | | 21 | | |
| | | 22 | | /// <summary> Initializes a new instance of TableQueryResponse. </summary> |
| | | 23 | | /// <param name="odataMetadata"> The metadata response of the table. </param> |
| | | 24 | | /// <param name="value"> List of tables. </param> |
| | 56 | 25 | | internal TableQueryResponse(string odataMetadata, IReadOnlyList<TableItem> value) |
| | | 26 | | { |
| | 56 | 27 | | OdataMetadata = odataMetadata; |
| | 56 | 28 | | Value = value; |
| | 56 | 29 | | } |
| | | 30 | | |
| | | 31 | | /// <summary> The metadata response of the table. </summary> |
| | 0 | 32 | | public string OdataMetadata { get; } |
| | | 33 | | /// <summary> List of tables. </summary> |
| | 56 | 34 | | public IReadOnlyList<TableItem> Value { get; } |
| | | 35 | | } |
| | | 36 | | } |