// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Teams.Apps.Annotations;
[AttributeUsage(AttributeTargets.Class, Inherited = true)]
public class TeamsControllerAttribute(string? name = null) : Attribute
{
public string? Name { get; } = name;
}microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Apps/Annotations/TeamsControllerAttribute.cs
10lines · modepreview