microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Apps/Annotations/TeamsControllerAttribute.cs
11lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | namespace Microsoft.Teams.Apps.Annotations; |
| 5 | |
| 6 | [AttributeUsage(AttributeTargets.Class, Inherited = true)] |
| 7 | [Obsolete("Use Minimal APIs instead.")] |
| 8 | public class TeamsControllerAttribute(string? name = null) : Attribute |
| 9 | { |
| 10 | public string? Name { get; } = name; |
| 11 | } |