Skip to content

Commit

Permalink
feat(resourcemanager): add TypeReferenceTypeAttribute (#26127)
Browse files Browse the repository at this point in the history
Add an attribute which can be used to mark `x-ms-mgmt-typeReferenceType`

part of Azure/autorest.csharp#1761
  • Loading branch information
archerzz authored Dec 30, 2021
1 parent 958eb2e commit 995447d
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using System;

namespace Azure.ResourceManager.Core
{
/// <summary>
/// An attribute class indicating a reference type which can replace a type in target RPs.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
internal class TypeReferenceTypeAttribute : Attribute
{
}
}

0 comments on commit 995447d

Please sign in to comment.