Files
hannibalstealer/OMethod.cs
T
2026-08-27 11:22:57 -06:00

17 lines
266 B
C#

using System;
using System.Runtime.InteropServices;
namespace SHARP
{
internal class OMethod
{
[ComVisible(true)]
[Serializable]
public enum OMethods
{
TelegramBot,
MyPrivateServer,
}
}
}