CPF/CPF.Mac/Mac/Foundation/PreserveAttribute.cs
2023-11-21 23:05:03 +08:00

13 lines
471 B
C#

using System;
namespace CPF.Mac.Foundation
{
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate)]
public sealed class PreserveAttribute : Attribute
{
public bool AllMembers;
public bool Conditional;
}
}