// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph { /// /// A query option to be added to the request. /// https://developer.microsoft.com/en-us/graph/docs/concepts/query_parameters /// public class QueryOption : Option { /// /// Create a query option. /// /// The name of the query option, or parameter. /// The value of the query option. public QueryOption(string name, string value) : base(name, value) { } } }