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