// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Teams.Apps.Plugins;
[AttributeUsage(AttributeTargets.Class, Inherited = true)]
public class PluginAttribute(params string[] description) : Attribute
{
public string Name { get; set; } = string.Empty;
public string Version { get; set; } = "0.0.0";
public string? Description { get; set; } = string.Join("\n", description);
}microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Apps/Plugins/PluginAttribute.cs
12lines · modepreview