Add source

This commit is contained in:
hexadecimal
2025-04-24 20:51:29 +03:00
parent 9badc969b8
commit e3c1cdea0e
92 changed files with 13471 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
namespace Bunifu.Licensing.Options
{
// Token: 0x0200002A RID: 42
internal enum ActivationResults
{
// Token: 0x0400013F RID: 319
Success,
// Token: 0x04000140 RID: 320
Failed,
// Token: 0x04000141 RID: 321
ProductLicenseMismatch,
// Token: 0x04000142 RID: 322
ExceptionRaised,
// Token: 0x04000143 RID: 323
TLS12Issue,
// Token: 0x04000144 RID: 324
Forbidden
}
}