obfuz/com.code-philosophy.obfuz/Runtime/EncryptFieldAttribute.cs

10 lines
188 B
C#
Raw Normal View History

using System;
namespace Obfuz
{
[AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)]
public class EncryptFieldAttribute : Attribute
{
}
}