// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. namespace Microsoft.Teams.AI.Annotations; public static partial class Prompt { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = true)] [Obsolete("Microsoft.Teams.AI is deprecated and will be removed by end of summer 2026.")] public class NameAttribute(string Name) : Attribute { /// /// the prompts name /// public string Name { get; private set; } = Name; } }