2023-04-14 15:51:28 +08:00

16 lines
287 B
C#

/*
* Copyright (c) 2015,2016 Beebyte Limited. All rights reserved.
*/
using System;
namespace Beebyte.Obfuscator
{
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)]
public class DoNotFakeAttribute: System.Attribute
{
public DoNotFakeAttribute()
{
}
}
}