// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Purview;
///
/// Shared constants for the Purview service.
///
internal static class Constants
{
///
/// The odata type property name used in requests and responses.
///
public const string ODataTypePropertyName = "@odata.type";
///
/// The OData Graph namespace used for odata types.
///
public const string ODataGraphNamespace = "microsoft.graph";
///
/// The name of the property that contains the conversation id.
///
public const string ConversationId = "conversationId";
///
/// The name of the property that contains the user id.
///
public const string UserId = "userId";
}