summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Runtime/CompilerServices/HasCopySemanticsAttribute.cs
blob: 508711573004213f3edca1cadb04d67f8ec1611b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace System.Runtime.CompilerServices
{
[Serializable]
[AttributeUsage(AttributeTargets.Struct)]
    public sealed class HasCopySemanticsAttribute : Attribute
    {
        public HasCopySemanticsAttribute()
        {}
    }
}