DocSpace-client/thirdparty/Microsoft.Graph.Core/Models/ReferenceRequestBody.cs

22 lines
813 B
C#

// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
namespace Microsoft.Graph
{
using Newtonsoft.Json;
/// <summary>
/// The reference request body.
/// </summary>
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public class ReferenceRequestBody
{
/// <summary>
/// The OData.id value.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "@odata.id", Required = Required.Default)]
public string ODataId { get; set; }
}
}