mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
12 lines
524 B
C#
12 lines
524 B
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace System.Diagnostics.CodeAnalysis;
|
|
|
|
/// <summary>
|
|
/// Specifies that this constructor sets all required members for the current type, and callers
|
|
/// do not need to set any required members themselves.
|
|
/// </summary>
|
|
[AttributeUsage (AttributeTargets.Constructor)]
|
|
public sealed class SetsRequiredMembersAttribute : Attribute; |