|  |  | 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.ResourceManager.DigitalTwins.Models | 
|  |  | 12 |  | { | 
|  |  | 13 |  |     /// <summary> A list of DigitalTwins description objects with a next link. </summary> | 
|  |  | 14 |  |     public partial class DigitalTwinsDescriptionListResult | 
|  |  | 15 |  |     { | 
|  |  | 16 |  |         /// <summary> Initializes a new instance of DigitalTwinsDescriptionListResult. </summary> | 
|  | 0 | 17 |  |         internal DigitalTwinsDescriptionListResult() | 
|  |  | 18 |  |         { | 
|  | 0 | 19 |  |             Value = new ChangeTrackingList<DigitalTwinsDescription>(); | 
|  | 0 | 20 |  |         } | 
|  |  | 21 |  |  | 
|  |  | 22 |  |         /// <summary> Initializes a new instance of DigitalTwinsDescriptionListResult. </summary> | 
|  |  | 23 |  |         /// <param name="nextLink"> The link used to get the next page of DigitalTwins description objects. </param> | 
|  |  | 24 |  |         /// <param name="value"> A list of DigitalTwins description objects. </param> | 
|  | 4 | 25 |  |         internal DigitalTwinsDescriptionListResult(string nextLink, IReadOnlyList<DigitalTwinsDescription> value) | 
|  |  | 26 |  |         { | 
|  | 4 | 27 |  |             NextLink = nextLink; | 
|  | 4 | 28 |  |             Value = value; | 
|  | 4 | 29 |  |         } | 
|  |  | 30 |  |  | 
|  |  | 31 |  |         /// <summary> The link used to get the next page of DigitalTwins description objects. </summary> | 
|  | 4 | 32 |  |         public string NextLink { get; } | 
|  |  | 33 |  |         /// <summary> A list of DigitalTwins description objects. </summary> | 
|  | 4 | 34 |  |         public IReadOnlyList<DigitalTwinsDescription> Value { get; } | 
|  |  | 35 |  |     } | 
|  |  | 36 |  | } |