| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Collections.ObjectModel; |
| | 6 | |
|
| | 7 | | namespace Azure.AI.FormRecognizer.Models |
| | 8 | | { |
| | 9 | | /// <summary> |
| | 10 | | /// A read-only collection of <see cref="RecognizedForm"/> objects. |
| | 11 | | /// </summary> |
| | 12 | | public class RecognizedFormCollection : ReadOnlyCollection<RecognizedForm> |
| | 13 | | { |
| | 14 | | /// <inheritdoc/> |
| 108 | 15 | | internal RecognizedFormCollection(IList<RecognizedForm> list) : base(list) |
| | 16 | | { |
| 108 | 17 | | } |
| | 18 | | } |
| | 19 | | } |