| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. See License.txt in the project root for |
| | | 3 | | // license information. |
| | | 4 | | |
| | | 5 | | namespace Microsoft.Azure.Search.Models |
| | | 6 | | { |
| | | 7 | | using System.Collections.Generic; |
| | | 8 | | |
| | | 9 | | /// <summary> |
| | | 10 | | /// Represents a document as a property bag. This is useful for scenarios where the index schema is only known |
| | | 11 | | /// at run-time. |
| | | 12 | | /// </summary> |
| | | 13 | | public class Document : Dictionary<string, object> |
| | | 14 | | { |
| | | 15 | | /// <summary> |
| | | 16 | | /// Initializes a new instance of the Document class. |
| | | 17 | | /// </summary> |
| | 33244 | 18 | | public Document() { } |
| | | 19 | | } |
| | | 20 | | } |