microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Apps/Plugins/PluginAttribute.cs
9lines · modecode
| 1 | namespace Microsoft.Teams.Apps.Plugins; |
| 2 | |
| 3 | [AttributeUsage(AttributeTargets.Class, Inherited = true)] |
| 4 | public 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 | } |