microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.0-preview.5

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Apps/Plugins/PluginAttribute.cs

9lines · modecode

1namespace Microsoft.Teams.Apps.Plugins;
2
3[AttributeUsage(AttributeTargets.Class, Inherited = true)]
4public class PluginAttribute(params string[] description) : Attribute
5{
6 public string Name { get; set; } = string.Empty;
7 public string Version { get; set; } = "0.0.0";
8 public string? Description { get; set; } = string.Join("\n", description);
9}