mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
21 lines
480 B
C#
21 lines
480 B
C#
using System;
|
|
|
|
namespace Obfuz
|
|
{
|
|
|
|
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = false)]
|
|
public class ObfuzIgnoreAttribute : Attribute
|
|
{
|
|
public ObfuzScope Scope { get; set; }
|
|
|
|
public bool ApplyToNestedTypes { get; set; } = true;
|
|
|
|
public bool ApplyToChildTypes { get; set; } = false;
|
|
|
|
public ObfuzIgnoreAttribute(ObfuzScope scope = ObfuzScope.All)
|
|
{
|
|
this.Scope = scope;
|
|
}
|
|
}
|
|
}
|