// ------------------------------------------------------------------------------ // 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 key value pair to be added to the request. /// public abstract class Option { /// /// Create a new option. /// /// The name of the option. /// The value of the option. protected Option(string name, string value) { this.Name = name; this.Value = value; } /// /// The name, or key, of the option. /// public string Name { get; private set; } /// /// The value of the option. /// public string Value { get; private set; } } }