1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace System.Reflection
6 {
7     [AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
8     public sealed class AssemblyTrademarkAttribute : Attribute
9     {
AssemblyTrademarkAttribute(string trademark)10         public AssemblyTrademarkAttribute(string trademark)
11         {
12             Trademark = trademark;
13         }
14 
15         public string Trademark { get; }
16     }
17 }
18 
19